Viewing 11 posts - 1 through 11 (of 11 total)
The code is correct what I posted oops. Was something else causing the problem
July 31, 2009 at 5:57 am
Hey all,
Nothing to do with business, more diagnostics. Just wanted something quick and dirty - I guess a lazy way of checking.
Suppose a situation where you have a record...
July 10, 2009 at 5:51 am
Michael,
All you need to do is basically store your command in a global variable. You can create a global variable by right-clicking the background DTS designer of your package. From the pop-up, select Package...
February 9, 2007 at 9:49 am
I came across a similar problem i had to achieve a few months back.
What I did was to setup an Execute Process Task to take the full command line parameters. ...
February 7, 2007 at 5:47 am
Thanks for the contributions...
It sounds like it would work off the top of my head although due to the massive amouts of tables that are referenced by the main table (about...
February 1, 2007 at 6:55 am
Also forgot to mention that we would remove ALL FK References before executing the SQL to do the update. The FK Constraints would then be recreated at the end of the merge...
January 31, 2007 at 7:53 am
Forgot to mention that I copied the SQL from Step to into Query Analyzer which took 20 minutes to execute.
January 31, 2007 at 7:05 am
Ah cheers,
Just needed to remove the carriage returns...
REPLACE( Progress_Notes, CHAR( 13 ) , '' ) AS TheValue
June 16, 2006 at 4:49 am
You can use DATENAME function to do this. This will do it for the current date.
SELECT DATENAME( year, GetDate() )
Or in a query
SELECT DATENAME( year,...
June 15, 2006 at 5:37 am
Viewing 11 posts - 1 through 11 (of 11 total)