Viewing 15 posts - 2,191 through 2,205 (of 7,164 total)
SELECT cntr_value AS [amount of memory SQL is using in KB]
FROM sys.dm_os_performance_counters
WHERE counter_name = 'Total Server Memory (KB)';
SELECT physical_memory_in_bytes / 1024.0 AS [amount...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:17 am
The Service Pack installer will manipulate the state of the service so connections will be interrupted or impossible at specific times during the upgrade. Definitely test the upgrade in a...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:08 am
Phil Parkin (1/31/2013)
johnnycash (1/30/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:02 am
A SQL Server Backup/Restore will absolutely restore whatever statistics were in place when the backup was taken from the source. A restore brings online a byte-for-byte representation of the database...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 4:53 am
beejug1983 (1/31/2013)
1) In task manager we always observes that sql service is consuming more memory than actual. Why...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 4:45 am
If you already have a stored proc that can create a database using dynamic sql then why would you store any code in a table (bad idea in general) and...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 4:34 am
Which version of SQL are you on?
http://www.sqlservercentral.com/Forums/FindPost1003578.aspx
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 30, 2013 at 8:24 pm
You should not have to enable the TRUSTWORTHY bit. In fact I would recommend turning that off if only enabled during this effort in an attempt to get something working.
Steps...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 30, 2013 at 7:27 am
APA0876 (1/29/2013)
How to get the Deadlock Graph from the xml extracted from system_health extended event.
Retrieving Deadlock Graphs with SQL Server 2008 Extended Events By Jonathan Kehayias[/url]
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 30, 2013 at 6:48 am
I would say test your workload with the 'easy tiering' in place and experiment with different raid levels within that context. The disk-virtualization technology has gotten better, it may surprise...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 30, 2013 at 6:45 am
mramaswamy (1/29/2013)
But I later updated the package using the new build assembly from prod. My...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 9:18 pm
UncleBoris (1/29/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 5:52 pm
UncleBoris (1/29/2013)
SQL 2008 STD
The database is set to auto grow the data file by 4096 MB.
The data file is almost full so will...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 1:44 pm
monilps (1/29/2013)
I want to capture and save everything into database.Thanks.
Logging all activity to a table could be disastrous for performance. The recommended way to handle auditing is to write to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 9:13 am
If the owner's login is disabled in the instance then it can still successfully function as a database owner for things like cross-database ownership chains and such. Make sure none...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 29, 2013 at 8:45 am
Viewing 15 posts - 2,191 through 2,205 (of 7,164 total)