Viewing 3 posts - 1 through 3 (of 3 total)
Here's a solution I found when writing xml files
Create a script task passing in your xml string as a variable (along with any file names etc). Add a reference to...
July 26, 2010 at 11:45 am
#1198340
Or you could just forget doing all the formatting yourself and use the msdb sys function dbo.agent_datetime(@date int no default,@time int no default)
so to get the run date and time
...
June 13, 2010 at 4:38 am
#1179585
Here's a really simple solution to the problem
create procedure StringToMixedCase
(
@str varchar(255) OUTPUT
 
AS
Declare @space smallint
--Add Space to start to aid in the change
SET
March 3, 2004 at 5:20 am
#496866