Forum Replies Created

Viewing 15 posts - 256 through 270 (of 2,469 total)

  • RE: dynamic sql

    remi - your question was not clear enough...you should've said - "in the example posted, it is not clear why dynamic sql is being used - try & avoid dynamic...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Missing Records After Cursor

    ..actually, it is...

    Don't take no for an answer!

    Don't accept candy from strangers...

    and

    Don't take bad advice from ANYBODY!!!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Photo in Profile?

    Far as I remember I had to save as a .png file before I was able to upload...try that!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Update statement force no trigger

    You can also get loads of information from the "create trigger" page....more specifically...

    "The IF UPDATE (column_name) clause in the definition of a trigger can be used to determine if...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Missing Records After Cursor

    Gil - you'll have to post your t-sql (or at least the portion that involves the cursor) for anyone to be able to troubleshoot this for you.

    You also stand to...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Help with backupsystem!

    just realized that nowhere in the link I posted do I mention that this is a cross-post...my apologies..







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Help with backupsystem!

    John - you'd really be better off following my link to the other post since Hasan has this posted at 3 different forums and kenneth is already addressing this in...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Replacing /(forward slash) with a -(dash)

    sorry...my bad...it should be :

    UPDATE cs_ArticleCategories
    SET child2 = REPLACE(child2, char(47), char(45)) 
    WHERE id = 637
    

    sorry..not thinking st. today..







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Replacing /(forward slash) with a -(dash)

    Aah.....

    in your "select...replace..." statement, remove the "AS Expr2"!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Replacing /(forward slash) with a -(dash)

    Also..where are you running this from...?!?!

    Is it possible that you have more than 1 database with the same table name and you're running the code against one but checking...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Replacing /(forward slash) with a -(dash)

    post the data from at least one sample string...

    run it for one sample row and as aaron requested...tell us what you get ?!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Replacing /(forward slash) with a -(dash)

    try substituting char() instead:

    DECLARE @child2 varchar(50)
    SET @child2 = 'that is a strange/name for a column'
    SELECT REPLACE(@child2, '/', '-') AS Expr1
    SELECT REPLACE(@child2, char(47), char(45)) AS Expr2
    







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Hello kan you helo me maybe?

    cross-posted - follow thread here!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Help with backupsystem!

    Maybe some of the answers can be found here!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Working Out of a Job

    You may just have your "here"s all dislocated!..







    **ASCII stupid question, get a stupid ANSI !!!**

Viewing 15 posts - 256 through 270 (of 2,469 total)