Viewing 15 posts - 4,876 through 4,890 (of 7,164 total)
There are multiple ways to report errors from stored procedures. One way it so set the return code, which is always of type INT. The number can mean whatever you...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 15, 2012 at 11:16 am
kennethigiri (3/15/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 15, 2012 at 10:57 am
kennethigiri (3/15/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 15, 2012 at 10:54 am
I think you're are OK in terms of the DB engine. SQL Server is reporting the memory as I would expect, noted by the 9.77GB figure for buffer_pool_target_memory_in_GB.
It's possible that...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 15, 2012 at 9:06 am
Good call on the async stats, Jeff.
@paul-2, notice in my code sample the "USE [test]" immediately after the RESTORE and before we set it to SINGLE_USER. In essence this guarantees...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 15, 2012 at 8:45 am
The batch size comes into play when loading the data into the database which is downstream from the issue I am highlighting.
The SqlBulkCopy.WriteToServer method (4 overloads) is how the class...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 10:38 pm
1. What is in your boot.ini? i.e. are you using the /PAE or /3GB switches?
2. Please post the results of this query run on your system:
SELECT CAST(physical_memory_in_bytes / (1024.0...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 8:41 pm
It does sound like a good plan. Without LPIM in place I suspect you will not be protected from the memory trims Windows imposes on SQL Server at times...one of...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 4:52 pm
Lynn Pettis (3/14/2012)
Not sure if AWE is going to help here. The /3GB switch should.
No evidence of helping or hurting in terms of making more memory avaialble. But it...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 4:18 pm
What were the min/max_mem settings when taking the readings?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 4:01 pm
snomad (3/14/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 11:24 am
Elliott Whitlow (3/14/2012)
sqlfriends (2/23/2012)
I often need to compare what is the difference of a ssis package with a previous version.Is there a way to do that?
Thanks
Not easily.. The package...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 11:21 am
vikingDBA (3/14/2012)
SINGLE_USER mode allows only a single user at a time, but could be anyone.
True, but you can guarantee you are the anyone 😀
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 10:11 am
Unless you have a trace running capturing all SQL, you cannot. But, you may be able to tell who was running the process that caused the autogrows. If teh Default...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 9:54 am
Sean Lange (3/14/2012)
CREATE SCHEMA must be in its own batch. What that means in context of your script if you will need to execute your create schema via dynamic sql.
+1
Here...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 14, 2012 at 9:36 am
Viewing 15 posts - 4,876 through 4,890 (of 7,164 total)