Viewing 15 posts - 1,006 through 1,020 (of 1,957 total)
If you can create SQL Agent Jobs on the DB server, there is no logical reason why they should not let you load your SSIS package onto the DB server...
February 20, 2013 at 5:20 pm
Randy Doub (2/20/2013)
So here's what works......
February 20, 2013 at 5:05 pm
I use script tasks in the OnError events of executables to store the error messages for sending an alert email at the end of the job (I also use a...
February 20, 2013 at 5:00 pm
update tablename
set column = stuff(column,1,1,'')+'0'
where column like '009_';
February 20, 2013 at 4:57 pm
[sarcasm]Simply set the date bucket parameter to weekly and the range filter from June 2011 to today.[/sarcasm]
Sorry, feeling a bit :hehe::w00t:
Truly...
Create a dates table (with weeks in it)
Add a data...
February 20, 2013 at 4:53 pm
ajreynolds (2/20/2013)
February 20, 2013 at 4:47 pm
Have you tried not just logging on as the SQL Agent user, but also opening excel to initialise the office system for that user?
February 20, 2013 at 12:03 pm
Well, if the import file is invalid because it contains unquoted separators in the data, you will always struggle.
You should get the producer of the data to remove invalid characters...
February 20, 2013 at 11:59 am
have you captured a trace of that new C# code running?
February 20, 2013 at 11:55 am
Is this a one-off import or are you setting up a repeatable process?
February 20, 2013 at 6:13 am
Maybe what you really need to do is post the C# code as that seems to be calling wrong...
February 20, 2013 at 6:12 am
Because you are declaring a parameter for the sp_executesql to use, but not actually using it in the query to execute...
You can either change the last line to this:
execute sp_executesql...
February 20, 2013 at 6:11 am
Edit. Removed As hadn't seen whole thread. #stupidtablet
February 19, 2013 at 3:00 pm
TheSQLGuru (2/14/2013)
Mister Magoo, that is some very slick TSQL.
Thanks.
Paul White - yet again you have impressed!! Very few people out there appreciate how powerful SQLCLR can be...
February 14, 2013 at 8:51 am
Viewing 15 posts - 1,006 through 1,020 (of 1,957 total)