Forum Replies Created

Viewing 15 posts - 526 through 540 (of 761 total)

  • RE: help with SQL query please

    This does:

    SSelect * From ClientDetails

    Where InterviewDate IN (Select MAX(InterviewDate) From ClientDetails Group By ClientID)

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: use pivot instead of alter table

    Please just post the DDL of your table and some readily consumable sample data as a series of Insert Statements.

    We'll provide the query for Pivot. post "only" the DDL of...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Msg 911, Level 16, State 1, Line 1 Database 'databasename' does not exist. Make sure that the name is entered correctly.

    Phil Parkin (5/1/2012)


    tt-615680 (5/1/2012)


    Dear All,

    Would anyone be able to let me know how to resolve the following error message please?

    Msg 911, Level 16, State 1, Line 1

    Database 'databasename' does...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: GETDATE() or CURRENT_TIMESTAMP?

    GilaMonster (5/1/2012)


    vinu512 (5/1/2012)


    Also GETDATE() returns the datetime specific to the database including the database time zone offset where as CURRENT_TIMESTAMP doesn't include the database offset.

    What do you mean by that?

    Getdate...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Multi-Server Test Environment - ay issues I should know about?

    You should be able to use all those features with the hardware you've mentioned.

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: GETDATE() or CURRENT_TIMESTAMP?

    CURRENT_TIMESTAMP is the ANSI standard method for getting date & time while GETDATE() is the T-SQL method.

    Also GETDATE() returns the datetime specific to the database including the database time zone...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: help with SQL query please

    Sorry missed the group by Division part in my last post...here is the edited query:

    ;With CTE

    As

    (Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)

    Select...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: SQL Query help

    Sorry missed the group by Division part in my last post...here is the edited query:

    ;With CTE

    As

    (Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)

    Select...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: SQL Query help

    Have also posted the query in your original thread. Here it is again:

    ;With CTE

    As

    (Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)

    Select b.* From...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: help with SQL query please

    This will work.

    ;With CTE

    As

    (Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)

    Select b.* From CTE as a

    JOIN Employee As b ON a.DateofBirth = b.DateofBirth...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: SQL Server 2008R2 Installation problem

    04/30/2012 12:17:59.328 Attempting to determine security.config file path

    04/30/2012 12:17:59.406 Checking to see if policy file exists

    04/30/2012 12:17:59.422 .Net security policy file does not exist

    04/30/2012 12:17:59.437 Attempting to create .Net security...

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: Changing Data type from char to numeric

    Please post the query and the Error that you get.

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: how to don't have a same name in my table.

    Great....good to hear that it worked 🙂

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: How I can Connect The ODBC?

    you're welcome..

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

  • RE: How I can Connect The ODBC?

    al_yamama_1980 (4/30/2012)


    I choose SQL Server

    I'm afraid I can't help you further. I'll keep looking. Will tell you if I find something.

    Vinu Vijayan

    For better and faster solutions please check..."How to post data/code on a forum to get the best help" - Jeff Moden[/url] 😉

Viewing 15 posts - 526 through 540 (of 761 total)