home  »  Blogs  »  PatrickLeBlanc  »  SSRS Data Driven Subscriptions Cryptic Job Names

To rate this blog entry please  register or login

Author

PatrickLeBlanc PatrickLeBlanc (Member since: 11/7/2009)

View PatrickLeBlanc 's profile

Comments (2)

  • DevinKnight 1/15/2010 10:17:38 AM by:  DevinKnight
    This is awesome Patrick! I don't know why I never thought to do this. This would have been helpful for this blog post I did before http://www.bidn.com/blogs/DevinKnight/ssis/261/using-a-ssrs-report-to-run-sql-agent-jobs-part-2
  • marcoadf 1/16/2010 6:17:00 AM by:  marcoadf
    Yes, indeed. I've uploaded a video recently (day 13) where I talk about some of the content in both of your posts, but go a little deeper like active subscriptions. See more in my blog post: http://www.bidn.com/blogs/marcoadf/ssas/340/subscriptions-how-to-manage-them

Post a comment

Comment (No HTML)  

Type the characters:
 *
 
   

Join Business Intelligence Developer Network for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

PatrickLeBlanc's latest blog posts

  • Using a CTE with a T-SQL Pivot Statement
    3/9/2010
    During a T-SQL class that I was recently teaching I was asked if a PIVOT could be performed using a Common Table Expression (CTE).  In other words, instead of using the method outlined in SQL Server Books Online that uses a derived table, replace the deri...
  • Speaking at Charlotte, NC - SQL Saturday #33
    3/1/2010
    If you are near Charlotte, NC , I will be speaking at their SQL Saturday  on March 6th, 2010.  My session, SQL Server Compression 101  is at 1:30 PM.  This is the first SQL Saturday under PASS management.  If you have not registered for this event do so, ...
  • SSRS – KPIs without Analysis Services
    3/1/2010
    During a recent project I was asked if it was possible to simulate Key Performance Indicator (KPI) images in SQL Server Reporting Services (SSRS) without Analysis Services. Off the top of my head I thought of a couple of things, but I decided to do a litt...
  • Upcoming SQL Lunch Webinars
    2/24/2010
    If you haven’t attended a SQLLunch, I suggest that you put this upcoming lunch on your schedule. Brad McGehee, SQL Server MVP, will be presenting an Introduction to Graphical Execution Plans. Brad has over 15 years of SQL Server Experience and over 6 year...
  • SQL Server 2008 - Adding Row Totals
    2/22/2010
    During a recent client engagement I was asked if there was a quick way to add a row containing totals for each corresponding column in the details row from a Tablix item. The tablix contained about 18 columns, and the person was entering an expression tha...

Latest community blog posts

  • BradSchacht SQL REPLACE for editing Configuration Tables
    3/10/2010
    Package Configurations in SSIS are key to making your packaged portable across the entire development process.  The problem you being to face with configuration files is the quantity that you collect.  Recently I was working on a project where we had paca...
  • BradSchacht Calculate the Date of the Previous Sunday
    3/10/2010
    There are a number of ways that you can calculate dates using T-SQL.  A common practice is to find the first day of the week which can be accomplished easily by using the following function.select DATEADD(wk, DATEDIFF(wk,0,getdate()), 0)However, you will ...
  • Bevans Back to Basics
    3/10/2010
    Today I figured I go back to basics with this blog since a majority of the visitors to this site are primarily DBA's and Database Guru's. This may turn into a series but for now we will discuss a bit of a feared power of sql server, and that is the fact t...
  • PatrickLeBlanc Using a CTE with a T-SQL Pivot Statement
    3/9/2010
    During a T-SQL class that I was recently teaching I was asked if a PIVOT could be performed using a Common Table Expression (CTE).  In other words, instead of using the method outlined in SQL Server Books Online that uses a derived table, replace the deri...
  • mroman98 Execute a SSIS package from a remote server
    3/9/2010
    Hi ,   I have a package that i need to be able to execute form a remote server....   How can i do that?... i need to have an icon on the desktop so the user can click on it and the package be executed. This is a very simple package where i have s source f...