Forum Replies Created

Viewing 15 posts - 406 through 420 (of 462 total)

  • RE: Excel Functions in SQL server2005

    I am just giving it a wild guess, I had not seen that in SQL Server atleast. Lets if someone knows about it. Otherwise what you can do is create...

  • RE: Query to display a single status value

    You are welcome. 🙂

  • RE: Query to display a single status value

    You should give data like this to get an answer. See if this solution works in your case.

    CREATE TABLE Group_Test(Group_ID int, Status varchar(5))

    INSERT INTO Group_Test VALUES(1, 'NPL')

    INSERT INTO Group_Test...

  • RE: SQL SERver 2005 installation on windows xp

    Hi Sharon,

    I was closely watching this post if anyone would reply with an answer. I wanted to ask if you could check any other small 'MSI installation' on the machine...

  • RE: User Defined Date Function

    I know! In Toad you will be prompted with an input box to enter the values.I am not sure if it is there in SSMS. Lets see if anyone else...

  • RE: User Defined Date Function

    john.imossi (9/1/2009)


    I've created a date range within the WHERE clause:

    WHERE Date Between CONVERT(DateTime, '01-JAN-2008 00:00:00', 103)

    AND CONVERT(DateTime, '31-DEC-2008 23:59:59', 103)

    Thanks

    Not sure if this is what you were looking for,

    Create...

  • RE: Query to display a single status value

    Sample quey is:

    select bg.[Group ID],

    bg.[Number],

    [Status]

    from

    ...

  • RE: The multi-part identifier could not be bound

    You're welcome:-)

  • RE: Pattern matching in TSql

    Thanks Garadin and thanks Mark. We would have to work our way out using these two operators!!!!.

  • RE: Pattern matching in TSql

    Mark (8/31/2009)


    naveenreddy.84 (8/31/2009)


    Please find below the table creation and Insert Script

    CREATE TABLE Sequence

    (ID INT,

    Seq VARCHAR(MAX))

    INSERT INTO Sequence VALUES(1,'01111')

    INSERT INTO Sequence VALUES(1,'10111')

    INSERT INTO Sequence VALUES(1,'11011')

    INSERT INTO Sequence VALUES(1,'11101')

    INSERT INTO...

  • RE: date problem

    I cant give the entire query, try creating row_id partition by date and your id. Create a temporary table of this may be. Cross join tables. Look for the existence...

  • RE: Multiple Instances of MS-SQL Server

    venki.ffcl (12/29/2008)


    hi,

    Can i have two or more instances of sql server running in my machine and access the same simultaneously. If yes how?

    Please help...

    thank you

    Yes you can have multiple instance...

  • RE: The multi-part identifier could not be bound

    Assuming its the tli1.updatetime in the select clause, I am guessing yes. Try giving tli2.updatetime in the select query as well? That is what you need isnt it?

  • RE: Error converting data type varchar to float.

    Thanks all for all your help. Temporarily managed to push the data into the database using your suggestions. Its nice to know that you all explain 'whats really happening' rather...

  • RE: Error converting data type varchar to float.

    Florian Reischl (8/28/2009)


    Use CONVERT to convert ColX and ColY to VARCHAR in your "THEN"-parts

    Thanks Florian, it works that way.

    I was just curious to know what was happening.

    Point is...

Viewing 15 posts - 406 through 420 (of 462 total)