Viewing 15 posts - 76 through 90 (of 145 total)
Some that I'd like to add are: embedded code editor, allow the option to show/hide headers/footers for subreports and package an updated ReportViewer control with each new version of...
September 8, 2011 at 2:17 pm
If SQL is prohibited you can use the Slowly Changing Dimension transformation in SSIS to update your table. This works best on smaller tables. The wizard should walk you...
August 29, 2011 at 12:17 pm
Evil Kraig F (8/25/2011)
Jeff Moden (8/24/2011)
Evil Kraig F (8/22/2011)
Jeff Moden (8/18/2011)
I would just pork chop the provider of the spreadsheet and get them to do things right. 😉
The problem...
August 25, 2011 at 2:01 pm
Are you trying to wrap the values in xmlSummary with "<?xml version=\"1.0\" encoding=\"utf-8\"?><Report>" and "</Report>"? You are getting an error is because {1} is not a format string -...
August 19, 2011 at 9:11 am
You could do the below, but I highly recommend using MERGE instead.
IF EXISTS (SELECT 1 FROM tbldata WITH (NOLOCK) WHERE Id=@Id)
BEGIN
...
August 18, 2011 at 3:05 pm
What are you trying to do with this line:
Dts.Variables["Validation_XML"].Value = string.Format("<?xml version=\"1.0\" encoding=\"utf-8\"?><Report>{0}{1}</Report>", xmlSummary);
You are probably getting the error because {1} is not a valid format string.
Mwise
August 18, 2011 at 2:14 pm
You could add a return value or output of the record count in the execute sql task, store that return value in a variable and then check that the value...
August 18, 2011 at 1:23 pm
I think what you may need to do is to move your stored procedure call to an Execute SQL task. You can get output and return variables from that...
August 18, 2011 at 1:02 pm
Here's an example using a Script component in the data flow task to do custom splits: [/url]. Can you see if that helps?
MWise
August 18, 2011 at 11:43 am
If you do decide to go with an exam prep book, most come with a cd containing test software. Plus my Ms Press book came with an eval version...
August 10, 2011 at 2:37 pm
Check your table definitions - st_ppl and st_cd will need to have the same columns in the same order. Otherwise, don't use * in your insert...select statement. Instead...
July 11, 2011 at 1:31 pm
BW_Toro (7/8/2011)
Where is the author? Where are the folks who defended the data collection query as harmless?
I'm with you on this one. I think the article should be fixed...
July 8, 2011 at 8:19 am
Can the startup offer stock options or a performance bonus? How badly would $12K impact your lifestyle and household budget? Or can you wait longer at your job...
July 6, 2011 at 12:30 pm
I believe that the query is incorrect and need to have the database filter (AND S.database_id=DB_ID()) added to it. I ran the query both with and without and ended...
July 6, 2011 at 11:52 am
I wasn't post-jacking. I was sharing my experience and advice directly in response to the original poster (MaricopaJoe) concerning his issues with a data driven subscription. Granted his...
July 1, 2011 at 8:04 am
Viewing 15 posts - 76 through 90 (of 145 total)