Viewing 15 posts - 16 through 30 (of 102 total)
Drop and Restore DB - Your last backup before the reboot should bring the DB up without the "delete transaction" (as it wasn't completed).
June 9, 2010 at 3:06 am
Poor engine handling of SQL code (Recursive CTE's).
Someone turned page level locking of on an index.
Someone used explorer to open a folder on the machine where a corrupt file exists.
Someone...
June 9, 2010 at 2:50 am
Jeff Moden (3/15/2010)
Eoin (3/15/2010)
That's what's known in the business as a "Scream Test"Heh... I didn't have a name for it but that'll do perfectly. 🙂
Glad to be of assistance:-D
March 15, 2010 at 5:43 am
That's what's known in the business as a "Scream Test"
March 15, 2010 at 2:19 am
homebrew01 (12/2/2009)
Eoin (12/2/2009)
I see a SPN error message in the posted sql logs, have you recently changed the permissions of the service accounts (or changed the accounts).
Also is the E...
December 2, 2009 at 6:03 am
homebrew01 (12/1/2009)
The errors in post #4 came from the event log.
If...
December 2, 2009 at 2:55 am
Jeff Moden (12/1/2009)
December 2, 2009 at 2:07 am
rhunt (10/12/2009)
October 13, 2009 at 3:05 am
rhunt (10/8/2009)
Eoin (10/8/2009)
Try running the followingselect name, SUM(single_pages_kb + multi_pages_kb)/1024.0 MBUsed
from sys.dm_os_memory_clerks
group by name
order by 2 desc
with particular empasis on figures for Tokenandpermuserstore, sql plans and object plans
There...
October 8, 2009 at 7:51 am
Try running the following
select name, SUM(single_pages_kb + multi_pages_kb)/1024.0 MBUsed
from sys.dm_os_memory_clerks
group by name
order by 2 desc
with particular empasis on figures for Tokenandpermuserstore, sql plans and object plans
October 8, 2009 at 5:21 am
Simple Formula: 32 Bit OS
If your system has 4 GB and 16 GB - use /PAE + AWE
Check out this link
http://blogs.technet.com/vipulshah/archive/2007/05/10/3gb-pae-and-awe-on-32-bit-systems.aspx
July 8, 2009 at 4:41 am
I've also noted that SQL has exceeded the max settings on a numebr of our severs. See below from kb321363
Note that the max server memory option only limits the size...
July 8, 2009 at 3:14 am
Login Errors
Since beginning to use WA we have had the following errors
1. Cannot generate SSPI context. (.Net SqlClient Data Provider)
2. Login Failed for user '', the user is...
June 10, 2009 at 2:37 am
Thanks Gail,
I am giving the developers the option (initially) to view all definitions for all users in a specific role
i.e
use my_db
create role dbreader
Go
sp_addrolemember 'db_datareader','dbreader'
Go
GRANT VIEW Definition TO dbreader --Will...
March 24, 2009 at 8:43 am
As regards giving the users the ability to view definitions
I found this info here http://www.mssqltips.com/tip.asp?tip=1593
So USE [dbname]
GO
GRANT VIEW Definition TO [reader_role]
Will allow a members of a role...
March 24, 2009 at 4:15 am
Viewing 15 posts - 16 through 30 (of 102 total)