Viewing 10 posts - 1 through 10 (of 10 total)
Lovely idea.
Still, it seems to be hard to find in reality.
June 14, 2013 at 6:05 am
Easy way to implement this would be the following:
you create two ssis packages. One is the main package and responsible for control flow. It takes the parameters and passes them...
May 24, 2013 at 5:18 am
nick.mcdermaid (5/13/2013)
May 14, 2013 at 4:18 am
This thread is almost 5 years old. Is this when you had your last real vacation?
Its really the same here. Extra work before the vacation AND afterwards.
Nothing of the my...
April 26, 2013 at 2:09 am
To get the total volume space of a HDD you might find this link useful:
http://www.sqlservercentral.com/articles/powershell/68011/
It can be done using PowerShell to collect the data in in SQLAgentJob.
The Problem...
April 12, 2013 at 6:00 am
Hi!
You can capture all raised errors in a table type variable.
BEGIN TRY
EXEC(@SQL)
END TRY
BEGIN CATCH
UPDATE @tFirmen SET ErrorMSG = ERROR_MESSAGE()
WHERE ID = @FirmaID
END CATCH
After execution you can handle the errors or...
March 7, 2013 at 2:13 am
You would have to wait for the scripttask to process all rows and set variable value after endofrowset.
Since you are already using stored procedure here, why not just insert the...
March 6, 2013 at 7:46 am
Your table definitions contain serious errors. Only way to join users (give the correct datatype and references are used) is by joining sals with users on designation_id.
This happens to...
March 6, 2013 at 7:08 am
This topic is .NET related since the only differences here are based on the processing of the query results. You should choose a simple method to get data back from...
March 6, 2013 at 5:39 am
Since you don't have a Identity column here you might have to use a row number to join the other columns back in.
Generally you could just split the information accordingly...
March 6, 2013 at 3:05 am
Viewing 10 posts - 1 through 10 (of 10 total)