Forum Replies Created

Viewing 15 posts - 241 through 255 (of 313 total)

  • RE: SSIS sqlserver configuration

    Lets say they have to be restarted and those moments when the server is getting restarted is when the SQL jobs are scheduled.Is there a configuration which would take care...

  • RE: Multiple updates in 1 table from another table

    Sure,will keep in mind

  • RE: select with single quotes

    Thanks Jeff/Eirikur .Should have updated the forum.I got what I was looking for.Thanks again.

  • RE: select with single quotes

    ascii value for comma

  • RE: palindrome

    nothing just ...just learning some coding

  • RE: palindrome

    I do not want to use reverse function.please check the code I posted and correct what wrong I did.thanks

  • RE: palindrome

    This is my IF clause which did not work...

    if (@charvaluefront= @charvalueback)

    Print 'its a palindrome'

    I am not sure why it did not work...

  • RE: T-SQL

    Yes,I do plan to get it done using SSIS and SSRS.

  • RE: T-SQL

    I got the code working properly.

  • RE: T-SQL

    The code worked for sometime ...

    then it stopped working.

    It gave me these extracts SSIS570.html where 570 is the ID passed as a parameter.

    After testing it a couple of times it...

  • RE: T-SQL

    Already tried that...still getting an error...

    Msg 139, Level 15, State 1, Procedure usp_Names, Line 0

    Cannot assign a default value to a local variable.

    Msg 137, Level 15, State 2, Procedure usp_Names,...

  • RE: T-SQL

    Did what you suggested...still throws an error...

    Here is the code I tried executing...

    ALTER PROCEDURE [dbo].[usp_Names]

    (@ID int)

    AS

    DECLARE @TaskOutFile VARCHAR(255)

    DECLARE @sqlquery VARCHAR(100) = 'select * from Table where ID=@ID';

    Select...

  • RE: T-SQL

    ALTER PROCEDURE [dbo].[usp_Names]

    (@ID int)

    AS

    DECLARE @TaskOutFile VARCHAR(255)

    DECLARE @sqlquery VARCHAR(100) = 'select * from Table where ID=@ID';

    SET @sqlquery = REPLACE(@SQLQuery,'@ID',@ID);

    Select @TaskOutFile = 'C:\SSIS' +@ID + '.html'

    EXEC sp_makewebtask...

  • RE: T-SQL

    It still throws an error...

    ALTER PROCEDURE [dbo].[usp_Names]

    (@ID int)

    AS

    DECLARE @TaskOutFile VARCHAR(255)

    DECLARE @sqlquery VARCHAR(100) = 'select * from dbo.Table where ID=@ID';

    SET @sqlquery = REPLACE(@SQLQuery,'@ID',@ID);

    Select @TaskOutFile = 'C:\'...

  • RE: T-SQL

    It gives me this error ...

    Msg 137, Level 11, State 1, Line 0

    [Microsoft][SQL Native Client][SQL Server]Must declare the scalar variable "@ID".

    Msg 16805, Level 11, State 1, Procedure sp_makewebtask, Line 131

    SQL...

Viewing 15 posts - 241 through 255 (of 313 total)