Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: SSIS to export XML.

    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...

  • RE: Producing dates from SYSJOBS and SYSJOBHISTORY

    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

    ...

  • RE: Mixed Case Values

    Here's a really simple solution to the problem

    create procedure StringToMixedCase

     (

      @str varchar(255) OUTPUT

    &nbsp

    AS

    Declare @space smallint

    --Add Space to start to aid in the change

    SET

Viewing 3 posts - 1 through 3 (of 3 total)