Viewing 15 posts - 3,886 through 3,900 (of 11,676 total)
You are using the Import/Export wizard?
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 7:29 am
There are probably other methods, as usual.
This one was the first I could come up with.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 4:06 am
Add HAVING SUM(WIMAgedBalances.Tot30d) + SUM(WIMAgedBalances.Tot60d) + SUM(WIMAgedBalances.Tot90d) > 0 after the GROUP BY.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 3:59 am
Since you are using IIF I can safely assume the code is for SQL 2012 or later 🙂
DECLARE @Date DATE = '20130217'
SELECT IIF(MONTH(@Date) <= 3, DATEFROMPARTS(YEAR(@Date)-1,4,1),DATEFROMPARTS(YEAR(@Date),4,1));
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 3:52 am
Lempster (1/17/2014)
sneumersky (1/16/2014)
Definitely a PITA....something we don't want to do for the end user.What does PITA stand for?
Pain in the *ss.
Or a kebab sandwich, whatever you prefer. 🙂
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 3:13 am
Maybe you should mention this in your original question.
You'll need to write some dynamic SQL: create a string variable large enough to hold the different SELECT statements that I wrote...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 12:51 am
DECLARE @param varchar(1000), @param1 varchar(1000), @param2 varchar(1000), @param3 varchar(1000);
SELECT @param = value FROM #temp WHERE Name = '@para';
SELECT @param1 = value FROM #temp WHERE Name = '@para1';
SELECT...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 12:30 am
If you want to debug the script task, you need to set a breakpoint inside the script task.
Breakpoints in the control flow are for debugging the package itself. If the...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 12:02 am
You can see a connection manager as a factory creating connections.
Each time a connection manager is used by an SSIS component, a new connection is created.
If you set RetainSameConnection to...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 17, 2014 at 12:00 am
How does the query look like? Do you use any parameters?
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 11:57 pm
gurjer48 (1/16/2014)
i am working as report developer ??
I have 1 1/2year exp in ssrs reports and
now recently i joined ssas and ssis job??
is...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 11:56 pm
You are retrieving only filename and extension, so the folder is missing.
In the for each loop you can choose to retrieve the fully qualified path. Take that one.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 11:54 pm
Easy one to end the week, thanks.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 11:49 pm
I would first create a new SSIS 2005 project and add some existing packages to it. Start small, don't add everything all at once.
Start with the easiest packages.
Then open your...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 3:23 pm
Evil Kraig F (1/16/2014)
Koen Verbeeck (1/16/2014)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 16, 2014 at 2:02 pm
Viewing 15 posts - 3,886 through 3,900 (of 11,676 total)