Forum Replies Created

Viewing 15 posts - 16 through 30 (of 42 total)

  • RE: Converting from varchar to datetime

    You saved my life! lol

    The only thing missing was the 'T' between the date and the time, everything works perfectly!

    Thanks a lot!

  • RE: OpenXML : If a node exists

    1 : You're confirming what I thought, I dropped that idea, will never work.

    2 : Well I went with the idea that if I can do something like this it...

  • RE: OpenXML : If a node exists

    lmu92 (1/7/2010)


    What xml element/attribute describes the column name?

    Your examle is only using data from a column. There is nothing indicating any relationship between node_a and localname, meaning: How do you...

  • RE: OpenXML : If a node exists

    Or a way to populate a temp table with the XML and build a dynamic SQL update statement from the temp table...

  • RE: An idle CPU condition has not been defined

    What values did you use? I got the same problem and can't seem to find what should go in those two fields.

    Average CPU usage falls below : ( x )...

  • RE: A single table corrupted?

    Thanks, I'll try it tonight. I don't know much about the SQL system tables, is there a way I can find deadlocks and kill them?

  • RE: A single table corrupted?

    nekonecny (5/21/2009)


    It seems problem with spn. When sql server starts, it creates spn in Active Directory. The SPN is an object in Active Directory. You can set the permissions with...

  • RE: A single table corrupted?

    Found the link : http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/SQL-Server-2005/Q_22542188.html

    Which seems to be very similar :

    SQL Server is cutting off client connections intermittently and I'm having a hard time figuring out why....

  • RE: A single table corrupted?

    The situation is this : the problem persisted for several days, one week to be +/- exact... and now everything's back to normal, why? Didn't find out yet...

    When I go...

  • RE: A single table corrupted?

    DBCC results for 'TBL72VTESINPUT'.

    There are 1276304 rows in 50618 pages for object "TBL72VTESINPUT".

    DBCC execution completed. If DBCC printed error messages, contact your system administrator.

    So it seems the table is not...

  • RE: A single table corrupted?

    It gives me "Command(s) completed successfully.", nothing else.

    Does that mean the database is not corrupted? Or that there is something I don't see right now on my screen?

  • RE: A single table corrupted?

    FelixG (5/14/2009)


    Could you post the error raised when trying to insert data??

    Just the pop-up : "ODBC Error on tblSales"

    I'm running the DBCC, I'll post the results as soon as possible.

  • RE: Copy non-system tables to development databse

    Well, I don't think tables change structure everyday, but there's at least a new table every week.

    The primary goal is to get the same structure without all the data because...

  • RE: Error on BEFORE UPDATE Trigger

    Gabriel P (4/14/2009)


    You probably already know this, but make sure you can't achieve the same functionality with a check constraint - as that would function like a true "before" trigger.

    Didn't...

  • RE: Need some help in writing a query

    SELECT BON, TXND, SUM(1) AS CNT

    FROM TBL_TEST

    GROUP BY BON, TXND

    That should do the trick.

    Values in the table :

    BON...

Viewing 15 posts - 16 through 30 (of 42 total)