Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Calling a Linked Sever

    Thanks guys anyway no answer necessary now, I found what is the way to do it...

     

  • RE: Help me with this t-sql

    Wrong my friend al rows are diferent

  • RE: Help me with this t-sql

    SELECT TOP 3 * FROM myTable

    ORDER BY Column4, Column1

     

    I hope this helps

  • RE: Case in Where with Null

    My apologies you are right! I think I might get a dirty read and I didn't notice. Plan 1 and 3 are the same.

    I am sorry, when I checked...

  • RE: Case in Where with Null

    Sure, here is the example I am using to test:

    CREATE INDEX INX_ReportsTo on Employees(reportsTo)

    go

    set ansi_nulls off

    go

    SELECT * FROM employees where reportsto = null

    go

    set...

  • RE: Changing the Incremental values in Identity column

    DBCC CHECKIDENT

    Checks the current identity value for the specified table and, if needed, corrects the identity value.

    Syntax

    DBCC CHECKIDENT

        ( 'table_name'

            [ , { NORESEED

                    | { RESEED [ ,...

  • RE: Case in Where with Null

    - Remi what you are saying is not totally wrong, actually I consider it a good aproach but, I have done some tests of my own and your solution also...

  • RE: Case in Where with Null

    Pls allow me to explain my self better.

    If you use  [ set ansi_nulls off ] you will be able to use null as value comparison this means:

    column1 = null ...

  • RE: Case in Where with Null

    SET ANSI_NULLS OFF

    Specifies SQL-92 compliant behavior of the Equals (=) and Not Equal to (<&gt comparison operators when used with null values.

    Try this in...

  • RE: Why Be an MCP?

    I agree with netmikem,

    You don't have to see certifications as titles but as knowledge that help you out in your work....

Viewing 10 posts - 1 through 10 (of 10 total)