Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 1,219 total)

  • RE: Skipping transaction...or...rolling back just one

    Yes, looks like you need to look deeper. Either that first INSERT is not doing what you think it does, or something else is deleting rows from that table.

    You could...

  • RE: SQL Server stops responding

    dwilliscp (7/26/2013)


    This effects all the SQL server jobs connecting to this server, and all users connected. So for users we have both Management Studio, and .Net Apps.

    A key here is:...

  • RE: Different cache time for same plan_handle

    Without looking or testing, I would assume that the value you see in exec_procedure_stats is when the procedure originally was compiled, but in query stats you see the recompilation times...

  • RE: Help - Shredding XML

    In XQuery (which is what you should use):

    DECLARE @x xml = '<bookstore>

    <book>

    <title lang="eng">Harry Potter</title>

    <price>29.99</price>

    </book>

    <book>

    ...

  • RE: Skipping transaction...or...rolling back just one

    We don't know what's in those transactions so it is hard to tell. But CATCH handler looks wrong. Why would you commit if you get an error? Shouldn't you always...

  • RE: Find integer at end of a string. There *must* be a better solution ?

    with tmp as (

    select x = 'some text-1'

    union select x = 'some text-123'

    union select x = 'some text-123.4'

    union select x...

  • RE: BOL 2012

    I have had my battle with the BOL folks... I can live with the installation, and if you install VS2012, you get a Help Viewer that is somewhat better.

    But I...

  • RE: TDS DONE Message

    I played some with Wireshark (which I don't have any previous experience of) and I was able to confirm your findings. I did not analyse whether all packets are DONE...

  • RE: Fuzzy searching

    /PAE is needed to be able to use AWE. However, not always. Books Online says:

    In Windows Server 2003, PAE is automatically enabled only if the server is using hot-add memory...

  • RE: TDS DONE Message

    Exactly how did you conclude that you got those DONE packets even with SET NOCOUNT ON? I spoke with Jonathan Kehayias, and he ran a test with Wireshark, and he...

  • RE: DELETE FROM Table WHERE PKID = 0 -runs for over 5 min without completing

    Dropping and recreating foreign keys every three months is not defensible. Recreating the FKs takes just as long time as takes to perform the check for the DELETE.

    I suggest that...

  • RE: TDS DONE Message

    Interesting. That would indicate a difference between stored procedures and loose batches that I was unaware of.

  • RE: error installed cumulative prior to the service pack in sql 2012

    Earlier you said that it did not install, and you could not uninstall it. Now you are saying that extraction doesn't work? Why on Earth would try to uninstall something...

  • RE: Fuzzy searching

    Is /PAE present in BOOT.INI?

    Can you post the output of this batch:

    select physical_memory_in_bytes, virtual_memory_in_bytes,bpool_committed, bpool_commit_target, bpool_visible

    from sys.dm_os_sys_info

    EXEC sp_configure 'show advanced options', 1

    RECONFIGURE

    EXEC sp_configure 'awe enabled'

    EXEC sp_configure 'max server memory'

  • RE: DELETE FROM Table WHERE PKID = 0 -runs for over 5 min without completing

    So the problem is exactly the foreign keys. CASCADE or NO ACTION, if you delete a row from a table, and there is an FK constraint from a big table...

Viewing 15 posts - 1,036 through 1,050 (of 1,219 total)