Forum Replies Created

Viewing 15 posts - 421 through 435 (of 789 total)

  • RE: Removing cursor from TSQL - 1

    Stanley Pagenel (2/28/2009)


    Thanks Dugi that help me fix my problem.

    Have a nice day,

    Stan

    You are welcome, the credits goes to Kamran Ali!

    😎

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Removing cursor from TSQL - 1

    hmmm take a look around some info from here:

    http://www.sqlservercentral.com/articles/SQL+Puzzles/eliminatingcursors/2223/%5B/url%5D

    :hehe:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Physical join

    Yea nice question ... also i point for the experience!

    😎

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: How to update multiple users, in multiple columns, and in multiple tables in a database at a time

    Plz, don't do double posts! All reply should be here

    http://www.sqlservercentral.com/Forums/FindPost661081.aspx

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: How to update multiple users, in multiple columns, and in multiple tables in a database at a time

    Plz, don't do double posts! All reply should be here

    http://www.sqlservercentral.com/Forums/FindPost661081.aspx

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Problem with Stored Procedure

    sql (2/8/2009)


    ok, i fixed it, i was inserting the wrong value. the code was fine, the operator was all jacked up

    hehehe you are here sql:

    BEGIN problem

    ....

    ....

    ....

    COMMIT solution! - sql's position

    :hehe::hehe::hehe:...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: % not found

    Be more specific about your problem ...!? What is that you cannot find with percentage!?

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: how to split following string

    seem easy or maybe I don't understand very well your question here:

    there is one of the solution:

    CREATE TABLE TTT

    (

    ID INT IDENTITY (1,1) NOT NULL,

    CHARS varchar(100)

    )

    INSERT INTO TTT

    SELECT 'a;b;cde;f;ghi;d' UNION ALL

    SELECT...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Need help in Update!

    Do you want to generate the ID numbers from 1 to .... in order or you have other values that you should find the MAX value then the new record...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: sql query manual increment

    ayi_102 (2/4/2009)


    Hi,

    i am doing my database project using SQL Server 2005

    but i made a mistake since i dont use primary key

    this is the problem

    ID Name...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Moving from SQL Server 7 to 2008

    jchallett (1/30/2009)


    Thanks for the tip!

    😉

    ...and final decision is !?

    1) form SQL 7 >>> SQL 2000 >>>> SQL 2008

    2) from SQL 7 >>>> SQL 2005 >>> SQL 2008

    ..and the winner...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Need Help!!!!! - Data manipulation

    Chris Morris (1/30/2009)


    Try this...

    DROP TABLE #Temp

    CREATE TABLE #Temp (Users VARCHAR(10), [DateTime] DATETIME, Sections VARCHAR(1), Title VARCHAR(1))

    INSERT INTO #Temp (Users, [DateTime], Sections, Title)

    SELECT 'Client1', '2009-01-30 08:00 AM', 'I', 'A' UNION...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Need Help!!!!! - Data manipulation

    Just to be sure that this code above is just to find you solution here, as you can see I didn't count nothing just generating the number in order by...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: Need Help!!!!! - Data manipulation

    this is the little code and the situation like yours I didn't have yet and sure that the others can have better idea how to do that but try and...

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: query to display all dependent objects of a table

    Hari.Sharma (1/30/2009)

    Keep Smiling...

    Anyway, This should work:

    EXEC sp_depends @objname = N'TableName'

    Now is Ok! :w00t: thnx for the sp info!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

Viewing 15 posts - 421 through 435 (of 789 total)