Viewing 15 posts - 1,036 through 1,050 (of 1,219 total)
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...
July 27, 2013 at 1:36 am
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:...
July 26, 2013 at 4:23 pm
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...
July 26, 2013 at 4:19 pm
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>
...
July 26, 2013 at 4:17 pm
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...
July 26, 2013 at 4:02 pm
with tmp as (
select x = 'some text-1'
union select x = 'some text-123'
union select x = 'some text-123.4'
union select x...
July 26, 2013 at 3:58 pm
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...
July 26, 2013 at 3:38 pm
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...
July 26, 2013 at 3:30 pm
/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...
July 26, 2013 at 3:01 pm
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...
July 26, 2013 at 2:43 pm
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...
July 25, 2013 at 3:57 pm
Interesting. That would indicate a difference between stored procedures and loose batches that I was unaware of.
July 25, 2013 at 3:53 pm
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...
July 25, 2013 at 3:44 pm
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'
July 25, 2013 at 3:41 pm
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...
July 25, 2013 at 2:42 am
Viewing 15 posts - 1,036 through 1,050 (of 1,219 total)