Viewing 15 posts - 166 through 180 (of 420 total)
Well, the easiest way is to use the date/time in the filename.
Will that work for you?
August 5, 2008 at 10:16 pm
There isn't a built-in way to do it but you do have choices.
You can go with SMO which has a script method, but SMO has always been a little hard...
August 5, 2008 at 10:12 pm
You can write a logon trigger that checks the app signature. Only instead of checking for apps they're not supposed to be connecting with just check for yours and...
August 5, 2008 at 10:03 pm
I haven't seen this exact problem, but many just like it. That's why I don't use maint plans.
August 5, 2008 at 8:17 am
I almost sounds like you're giving advice more than asking for advice, but I think there's maybe a language barrier there. However, I'm going to assume you're asking for...
July 29, 2008 at 11:35 am
I have a video on oledb connection mgr and config files... the concept is the same for files.
check it out if you like...
http://midnightdba.itbookworm.com/SSISConfigFileConnString/SSISConfigFileConnString.html
July 2, 2008 at 8:24 am
Well, the IsSorted flag just tells downstream components that your data is sorted. It doesn't actually sort it. It will have no bearing on performance.
July 1, 2008 at 8:47 am
Y, I have no idea. I've been pulling from views for yrs and I just did a test with a relatively complicated view and it pulled back just fine....
July 1, 2008 at 8:17 am
The first thing that comes to mind is maybe the file doesn't exist. It's possible that you're running the package on your workstation but the file is on the...
June 30, 2008 at 10:15 pm
I have a video on how to use the rowcount.
http://midnightdba.itbookworm.com/SSISRowCount/SSISRowCount.html
June 30, 2008 at 10:07 pm
I think you've basically got 3 options:
1. Set option explicit off. you can do this at the top of the script above the import statements by typing "Option...
June 30, 2008 at 5:14 pm
Are you positive that you're logging in with the same creds? Perhaps SSIS is making an anonymous connection which doesn't have permissions...
June 30, 2008 at 12:42 pm
I would imagine that if you just put a rowcount in front of your error file dest you can retrieve the var that holds that count in the next step...
June 30, 2008 at 12:40 pm
Here's what you're looking for...
([Column 2] == "N/A" ? "0" : [Column 2])
What this says is if col2 equals "N/A" then make it "0", else leave it as col2...
This goes...
June 30, 2008 at 12:37 pm
Viewing 15 posts - 166 through 180 (of 420 total)