Forum Replies Created

Viewing 15 posts - 106 through 120 (of 440 total)

  • RE: Indexes

    Choosing the index is purely based on how the table is being queried and what is are business requirement that table is addressing.

    check out the below link for some considerations:

  • RE: T-sql how to fine inserted record id

    PRINT IDENT_CURRENT('table')

    This will give the most recent IDENTITY value for 'table' - regardless of whether you created it or not

    PRINT SCOPE_IDENTITY()

    This will give the IDENTITY value last created...

  • RE: SELECT INTO - different server

    Instead of suign SELECT INTO why don't you try out BCP???

  • RE: Update statement and error msg 8152

    Glad to see your issue is resolved 🙂

  • RE: MCTS 70-431

    Hi The best way to preare is by looking at the official course material for this exam.

    Check out the below link

    http://www.microsoft.com/learning/en/us/exams/70-431.aspx

    If you have any questions on any subjects...

  • RE: Cannot insert duplicate key row in object

    twantoni (4/8/2009)


    All,

    ""Msg 2601, Level 14, State 1, Line 1

    Cannot insert duplicate key row in object 'dbo.INVENTDIM' with unique index 'I_698DIMIDX'.

    The statement has been terminated.""

    How do I get the original value...

  • RE: SQL - Server 2005 (Database tables)

    CREATE TABLE Employee_Test

    (

    Emp_ID INT Identity,

    Emp_name Varchar(100),

    Emp_Sal Decimal (10,2)

    )

    INSERT INTO Employee_Test VALUES ('Anees',1000);

    INSERT INTO Employee_Test VALUES ('Rick',1200);

    INSERT INTO Employee_Test VALUES ('John',1100);

    INSERT INTO Employee_Test VALUES ('Stephen',1300);

    INSERT INTO Employee_Test VALUES ('Maria',1400);

    CREATE TABLE Employee_Test_Audit

    (

    Emp_ID...

  • RE: New to SQL Server

    home (4/9/2009)


    Many thanks for all your help. We are making steady progress with the migration

    Sophie

    Can you tell us about plan and approach...this will help others...

  • RE: Compare Two Tables

    ulile (4/9/2009)


    AFIFM (4/7/2009)


    Select ... from a

    except

    select ... from b

    that gives you all rows from table a that are not in table b

    From query prespective how is this different...

  • RE: An Interview with Brad McGehee - Part 1

    Inspiring article. Thank you for sharing with us...

  • RE: Unused Procedures and tables

    The best way to find that is verifying with Consumers who are using your database.

  • RE: A great site like this - but for ORACLE.

    Steve Jones - Editor (4/1/2009)


    I've never seen anything like this for Oracle. We've been tempted to start one, but we don't know enough about Oracle 🙂

    Hi Steve,

    I am sure...

  • RE: Global Temporary Tables

    Hi Tanya

    Global temporary tables are dropped when last session accessing the tables is closed. It is always good practice to drop the temporary tables in the same scope, once we...

  • RE: Migration from SQL Server 7 to 2005

    In Other words i did exactly same as Flo mentioned in this post.

  • RE: Migration from SQL Server 7 to 2005

    Saleha Rizvi (4/7/2009)


    Did the identity fields work ok when you moved to the new server? Did the seed started from where it was left at the old server.

    The way i...

Viewing 15 posts - 106 through 120 (of 440 total)