Viewing 15 posts - 4,636 through 4,650 (of 7,168 total)
This will show you all allocations against VAS:
SELECT type,
SUM(virtual_memory_committed_kb) AS virtual_memory_committed_kb,
SUM(multi_pages_kb) AS multi_pages_kb
FROM...
April 3, 2012 at 10:53 am
Do you have another server where you can restore the database and try shrinking the files there?
April 3, 2012 at 10:37 am
Here is a WQL Query Tool for you to develop your queries:
In using a drive letter, are you sure the drive letter will exist for the service account...
April 3, 2012 at 9:42 am
You'll have a For Loop Container with a condition of "where 1=1" so it loops indefinitely. In the For Loop Container you'll have the WMI Event Watcher Task waiting for...
April 3, 2012 at 9:16 am
In your SSIS Data Flow, you can issue SQL that looks like this in your Data Source Component (e.g. OLE DB Source) to get the data out of the database...
April 3, 2012 at 9:03 am
william.l.gann (4/3/2012)
Dubya Tee Eff?!
Ditto. Interested to see if the 32-bit runtime runs clean. Thanks for posting back.
April 3, 2012 at 8:55 am
Craig made some good points about why not to have a package running all the time. If you are fine with it and want to proceed, or are bring forced...
April 3, 2012 at 8:52 am
Neat tidbit. It looks like sp_addalias was dropped from the product in SQL 2008, but on SQL 2005 you can check for orphans with this:
select *
from sys.database_principal_aliases dpa
left join...
April 3, 2012 at 8:46 am
Lock memory is allocated from the buffer pool, but it is still suspicious that you cannot see lock memory rising above ~800MB. Are you running the 3GB switch?
What are the...
April 3, 2012 at 8:35 am
I read that lock memory will never exceed 40% of total SQL Server memory. I see you have AWE enabled, however could it be that since you are on 32-bit...
April 2, 2012 at 10:03 pm
I noticed that despite the nice writeup you had no responses so far. I am no expert in this area of SSIS but figured I might try to lend a...
April 2, 2012 at 8:50 pm
Evil Kraig F (4/2/2012)
opc.three (4/2/2012)
April 2, 2012 at 4:47 pm
You could interrogate the results of setspn for your hostname:
setspn -L hostname
You should see an entry for MSSQLSvc/<FQDN>:<tcpport> if it was successfully registered.
April 2, 2012 at 4:24 pm
Here's a good discussion on Oracle's handling of NULL within unique indexes that pretty much says it all from every angle and perspective. Some posters even have DB2, MySQL and...
April 2, 2012 at 3:57 pm
DB_Newbie2007 (4/2/2012)
The good news is the Stored Procedure is running now. It may have taken 1 hour and 6 minutes, but at least it runs! 🙂
It's a start! Happy to...
April 2, 2012 at 2:14 pm
Viewing 15 posts - 4,636 through 4,650 (of 7,168 total)