Viewing 15 posts - 2,041 through 2,055 (of 11,678 total)
romina (8/18/2014)
4 and 9
Ah yes, those are UNION ALL components (designated by the (ALL) naming conventions).
I used "merge" in their names because they combine two streams of data together.
August 19, 2014 at 12:42 am
Maybe instead of usinge the default columns code and name, you could just create two seperate attributes, StoreName and StoreNumber?
The code column could be autopopulated like an identity.
August 19, 2014 at 12:36 am
Easy one if you remember Toms explanation of the previous QotD:
DECLARE @i INT = 0;
equals
DECLARE @i INT;
SET @i = 0;
Thanks for the question!
August 19, 2014 at 12:33 am
higgim (8/18/2014)
Not a happy chap with some of the help being offered! Go figure 🙂Qira (8/18/2014)
Dear Mr Higgam,You're helping me sir. Thanks to you. But no thanks to other one.
http://www.sqlservercentral.com/Forums/Topic1604205-392-2.aspx
What...
August 19, 2014 at 12:31 am
Qira (8/17/2014)
Your criticize is not helping me. So, don't help
Qira (8/17/2014)
You're helping me sir. Thanks to you. But no thanks to other one.
You do realize this is a forum with...
August 19, 2014 at 12:30 am
romina (8/18/2014)
Koen, thank you for this. Very helpful!In the custom implementation example, is that a Merge or a Merge Join?
Thanks
Romina
Neither.
Which number in the screenshot of the data flow are we...
August 18, 2014 at 8:15 am
vecerda (8/18/2014)
OK, this looks great. I see the logic. What is the code behind dbo.DelimitedSplit8k?thanks,
Petr
Take a look at the article of Jeff Moden I linked to.
August 18, 2014 at 7:34 am
It's pretty easy to accomplish using some well established methods.
First you can split the data using the "-" as a delimiter using Jeff Modens splitter function[/url].
Then you can concatenate the...
August 18, 2014 at 7:21 am
Does SSIS have access and permissions to read the XML config file?
Is the XML config correctly configured? Is the password correct? (not *******, you need to replace it with...
August 18, 2014 at 5:15 am
Indu-649576 (8/18/2014)
Koen Verbeeck (8/18/2014)
DECLARE @b-2 INT;
DECLARE @action VARCHAR(100);
DECLARE @dbname VARCHAR(100);
DECLARE @a INT;
SET @dbname = 'adt';
SET @action = 'dfgf';
SET @a = 14;
SET @b-2 =12;
PRINT('SELECT CASE WHEN ''' + @action...
August 18, 2014 at 5:15 am
er.mayankshukla (8/18/2014)
However, After opening the page I see 2 OnInformation Messages which says attempting to read configuration.But I also see error with login failed for SQL Configuration Server.
Which page?
Can you...
August 18, 2014 at 4:42 am
Ells (8/18/2014)
For the SSIS peeps:
Would a lookup task be perfomant on that size data set. I am not sure of its limits. I was hoping to use the lookup on...
August 18, 2014 at 4:07 am
Ells (8/18/2014)
August 18, 2014 at 4:03 am
Viewing 15 posts - 2,041 through 2,055 (of 11,678 total)