Viewing 15 posts - 9,631 through 9,645 (of 13,874 total)
kocamisu (9/20/2013)
I'm new using SSIS.But as i said at topic,had many success tests for these kind of things :
flat file to db or opposite db to flat file.For...
September 20, 2013 at 8:30 am
NOTE the code below has not been checked, it is symantec rather than syntactic.
I think you meant 'semantic', unless your solution is proposing an unorthodox anti-virus methodology 🙂
September 20, 2013 at 12:10 am
BowlOfCereal (9/17/2013)
September 18, 2013 at 2:03 am
Have you tried using a data conversion task?
September 16, 2013 at 1:03 pm
..back to SSIS.
If you want to update a row in SQL Server for every row that is transferred to Oracle, I'm not sure about this method. Are you trapping error...
September 16, 2013 at 7:04 am
...the performance of your package will plummet
Nice alliteration!
September 16, 2013 at 6:56 am
Or this maybe:
with MaxDates as (select id, MaxMod = max([Modified on]) from @Audit a group by id)
select a.id,a.Owner, a.[Modified on],a.Value
from @Audit a
join MaxDates m on a.id = m.id and a.[Modified...
September 13, 2013 at 5:09 am
nishav2 (9/11/2013)
So why is it saying 'Cannot open the data file" ?
Many servers have an additional layer of security which prevents file creation at the root of the c: drive...
September 12, 2013 at 12:23 am
nishav2 (9/11/2013)
Also the filename is stored in a variable and evaluated as expression:
Variable name...
September 11, 2013 at 11:38 pm
azdeji (9/11/2013)
Would that also help with integer values?
Not sure what you mean. There's no equivalent 'empty integer' - just either values or NULLs.
September 11, 2013 at 2:58 pm
herladygeekedness (9/11/2013)
ensure that the file exists in that location on the server or pass in correct location from server standpoint.
+1
Does the c:\SSIS folder exist on the server?
September 11, 2013 at 1:53 pm
azdeji (9/11/2013)
<from></from>
And I try adding default values but they still showed...
September 11, 2013 at 1:50 pm
azdeji (9/11/2013)
September 11, 2013 at 12:55 pm
I can see why they would embed the selection SQL at demos and presentations - keeps everything in one place & helps things flow more easily.
But in all the places...
September 11, 2013 at 12:57 am
patel.ritesh.r (9/9/2013)
Hello,Thank you for replying on the post.
Can you also please help me with the T-SQL script to insert data
You could use a 'numbers' table to do this (1,2,3,4,5,6,7,8,9,...).
Join to...
September 9, 2013 at 5:29 am
Viewing 15 posts - 9,631 through 9,645 (of 13,874 total)