Viewing 15 posts - 9,151 through 9,165 (of 13,881 total)
Agree with previous comment. Try changing INNER JOIN to LEFT JOIN and see whether that helps you.
August 8, 2014 at 12:04 am
This behaviour (selecting from temp tables) changed in SSIS 2012. Rather than declaring dummy metadata in your proc, you should use the WITH RESULT SETS option when you run the...
August 8, 2014 at 12:00 am
m.mukesh.mca2009 (8/7/2014)
I have a table like below.
ID eIDinCountoutCount
417720NULL NULL
1000010331 7
1000010346 ...
August 7, 2014 at 8:12 am
Have a read here and see whether it makes sense, then come back with any follow-up questions.
August 7, 2014 at 5:05 am
As you're using project deployment, you must be on SSIS 2012.
So your config info should be coming straight out of an SSISDB environment - no XML required.
August 7, 2014 at 4:16 am
I believe that the trigger executes under the same credentials as the event which fired it.
So the users doing the inserts in DB1 also need rights in DB2.
August 7, 2014 at 12:40 am
ronan.healy (8/5/2014)
August 5, 2014 at 4:35 am
twin.devil (8/5/2014)
so this means your CSV is multiline if im not mistaken ?
When would you have a non-multiline CSV? Wouldn't that just be column headings without data?
August 5, 2014 at 4:21 am
ronan.healy (8/5/2014)
August 5, 2014 at 4:19 am
ronan.healy (8/5/2014)
if I...
August 5, 2014 at 3:54 am
ronan.healy (8/5/2014)
its a csv file and in the csv file is all in the 1 column so should be split out correctly
If it's a single column, how are you doing...
August 5, 2014 at 3:47 am
ronan.healy (8/5/2014)
im using the following code to remove a comma
REPLACE([Counter Party Ref],", "," ")
the value in the column comes in like this
EDQE40000222004,0S0
any reason why my replace wont work or...
August 5, 2014 at 3:16 am
mathews.subbu (8/5/2014)
I have developed one SSIS package to import the CSV file values into DB table.
Everything Works fine.:w00t:
But i need some other workflows to CHECK the CSV file row...
August 5, 2014 at 3:12 am
Koen Verbeeck (8/5/2014)
Phil Parkin (8/5/2014)
Unless your database is case-sensitive, you don't need the UPPERs.Also you should always qualify your tables with their schema.
And you should finish your statements with the...
August 5, 2014 at 1:15 am
Viewing 15 posts - 9,151 through 9,165 (of 13,881 total)