Viewing 15 posts - 211 through 225 (of 479 total)
carriem (2/11/2009)
February 11, 2009 at 10:46 am
FWIW, the Simple-Talk Code Prettifier on SQLServerCentral gets it wrong (highlights PRINT '7' as executable). SSMS (2K5 SP3) shows
[font="Courier New"]PRINT '1' -- /* ;PRINT '2' */ ;PRINT '3' /*
PRINT '4'...
February 11, 2009 at 10:19 am
Great article. I too am having to do more and more work with SSIS and, naturally, don't have time/budget to go on training 🙁 hence learning about the tools described...
February 11, 2009 at 9:02 am
I've come up with a solution using the Execute SQL Task but it seems a bit of a kludge.
I've changed the SQL query in the task to something likeselect year,month,'select...
February 11, 2009 at 7:52 am
Sorry. But I don't see how this fits with accessing SSIS variables in tasks in a package. Could you explain further?
The data flow source task (where the SQL query is...
February 11, 2009 at 7:16 am
Bob Hovious (2/10/2009)
Engineering:
"How can I tell if my bridge is going to hold all the cars and trucks that will be driving on it?"
"How do...
February 11, 2009 at 6:25 am
David B (2/10/2009)
February 11, 2009 at 6:11 am
venki (2/11/2009)
I will first taking that employee name into a variable and checking for apostrophe(') and if it is there then...
February 11, 2009 at 5:52 am
A few comments.
Firstly, I try to avoid using GOTO as it can make the code difficult to figure out when someone comes back to it months later.
I also try to...
February 11, 2009 at 5:32 am
If you look at the definition of the table MSDB..SYSJOBSERVERS, it shows that [Last_run_date] is an int, so you need to convert it
I also did what you should have...
February 10, 2009 at 8:06 am
Are you building the statement in, for example, a web page?
If so, you need to do something like
Name = "Venkat R'Thota"
SQL = "select * from Employee where empname='" & replace(Name,"'","''")
The...
February 10, 2009 at 7:51 am
Assuming I interpreted your rules correctly (you could really do with explaining it better), I beleive your sample data is actually in the final state, so I made up some...
February 10, 2009 at 7:36 am
Sergiy (2/10/2009)
Derek Dongray (2/10/2009)
Sergiy (2/9/2009)
So, what was wrong with my solution?I thought your solution was just a step-by-step explanation of Adi's.
Yep, kind of.
Just missed his post.
So, the question then: what...
February 10, 2009 at 4:35 am
Viewing 15 posts - 211 through 225 (of 479 total)