Viewing 15 posts - 16 through 30 (of 140 total)
Wow you guys are fast! Now I have to dissect the code to understand it. Thanks!
July 30, 2013 at 9:41 am
Try to do this
--> Create temtp table
CREATE TABLE #Test(MonthOfYear int, Year int, Account int,Name varchar(255))
INSERT INTO #Test
VALUES(1,2013,1,'A')
INSERT INTO #Test
VALUES(12,2012,4,'B')
INSERT INTO #Test
VALUES(1,2013,4,'C')
INSERT INTO #Test
VALUES(1,2012,1,'D')
INSERT INTO #Test
VALUES(1,2013,5,'E')
--Build dynamic sql
DECLARE @Month int, @Year...
March 7, 2013 at 7:50 am
You probably need to modify your dynamic sql. Without seeing how you are actually building the sql (meaning we need to know how data is being passed in the...
March 6, 2013 at 4:06 pm
I am so stupid...all I had to do was delete the missing RDL's that was showing up in Solution Explorer
May 3, 2012 at 12:43 pm
It works fine if I create a new report. Some of the existing reports do have a sub-report but I am sure its pointing to another report since the...
May 3, 2012 at 7:59 am
So I went further with this but need more help. I created a report parameter called Expand_Collapse to hide/show the rows. Here is the code I am using...
May 2, 2012 at 9:23 am
Andy Hyslop (5/1/2012)
Does this help?=iif(Fields!related_ticket.Value = " ", true, false)
Andy
I could've sworn I tested it without the dataset name yesterday and it error out. This script works but I...
May 1, 2012 at 12:04 pm
The value is blank and your code didnt work. Its still showing the blank rows
April 30, 2012 at 3:27 pm
It works fine before without the Send Mail Task, once I added it and deployed to the server, I can see the SMTP Connection Manager was also uploaded
July 29, 2011 at 9:01 am
Thanks opc.three! I had our dba log in with the sql account and run the batch file to accept the keys and now it works 😀
July 15, 2011 at 1:49 pm
If its a permission issue why doesnt the package error out?
btw, which type of permission?
July 13, 2011 at 10:12 am
so do I need to install VS 2008?
July 8, 2011 at 10:57 am
dtexec /f "H:\DEVL\SSIS\ADPR Import\ADPR People Import.dtsx"
July 8, 2011 at 10:17 am
ahhhh mucho gracias amigo! it was driving me nuts lol
June 24, 2011 at 8:43 am
Viewing 15 posts - 16 through 30 (of 140 total)