Forum Replies Created

Viewing 15 posts - 436 through 450 (of 789 total)

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

    Yea this is true!

    I cannot see any results from Hari's T-SQL, everything is empty! 😛

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

    Very easy: right click on the table and click View Dependencies and you will see all other objects related to that table!

    You can see the results in attachment!

    😎

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

  • RE: Celebrating A Million

    Yea very nice info Steve I like it ...Congratz to all the people that spend the time offering help!

    :hehe::hehe::hehe::hehe:

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

  • RE: What will be impace of doing Snap

    Dont' do double post!

    Every reply should goes

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

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

  • RE: What will be impace of doing Snapshot Replication

    Dont' do double post!

    Every reply should goes

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

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

  • RE: Inner join vs=

    omlac (1/16/2009)


    I DIDNT KNOW THAT,

    Thank you very much.

    yea you have too many things here to know ... that's nice to help each-other!

    You are welcome!

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

  • RE: Difference between inner join and cross join?

    BigJohn (1/16/2009)


    Hi,

    The Wikipedia article is also quite good for determining the differences between the various join types quickly. It also includes examples and source code.

    http://en.wikipedia.org/wiki/Join_(SQL)

    Cheers,

    Yes it is true like few...

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

  • RE: From Up to Low hierarchy

    ABOSS is BOSS of A department

    A1 is Team Leader of department A

    A2 is employee

    So

    A Boss

    A1 Team Leader

    A2 Employee

    The hierarchy is BOSS >>> BOSS-TeamLeader >>> BOSS-TeamLeader-Employee

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

  • RE: distinct view

    There is the test:

    --CREATING TABLE JUST FOR TEST

    CREATE TABLE AAA

    (

    ID INT IDENTITY(1,1),

    PLACE NVARCHAR(40),

    DATE DATETIME

    );

    --JUST TO ADD SOME DATE VALUE IN FORMAT DD/MM/YYYY

    SET DATEFORMAT DMY

    --INSERTING VALUES IN TABLE

    INSERT INTO AAA

    SELECT...

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

  • RE: distinct view

    cotzan

    Let me know that results from the query above is ok!? :w00t:

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

  • RE: distinct view

    cotzan (1/16/2009)


    i want to see first one with its ID

    WITH IDD

    AS

    (Select ROW_NUMBER() OVER (PARTITION BY StCompanyName ORDER BY StCompanyName) AS IDNR, StCompanyName,StAccountName,StProcDTime,BoIsActive,StNotes FROM vwPurchase)

    SELECT * FROM IDD

    WHERE IDNR =1

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

  • RE: clusterd index

    And be sure that you do not have any Foregin Key from other tables which is referenced to the PK ( Your Clustered Index)

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

  • RE: clusterd index

    satyawan_sanap (1/16/2009)


    it's a primary key clustered.. so wt would be the ans???

    ALTER TABLE YOUR_TABLE

    DROP CONSTRAINT your_constraint_name

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

  • RE: joining of two tables

    Abhijit More (1/16/2009)


    its wrking used the same query olny retrived distinct records from tmpPoj..:)

    SELECT tmp.PojID, tmp.Cat,

    ...

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

  • RE: Difference between inner join and cross join?

    Paresh Prajapati (1/16/2009)


    Can anybody tell me the Difference between inner join and cross join.

    how and when we have to use them?

    http://en.wikipedia.org/wiki/JOIN

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

Viewing 15 posts - 436 through 450 (of 789 total)