Viewing 15 posts - 5,716 through 5,730 (of 6,395 total)
this might be a good place to start, granted its for 2008, but the principles are the same
March 6, 2012 at 5:57 am
also a primary key cannot contain a NULL value, but a UNIQUE constraint can contain 1 row which is NULL
March 6, 2012 at 5:42 am
You might be lucky to get all that in one tool.
From what I remember, user account creation etc is not captured in DM, Spotlight, Foglight or SQLMonitor.
I appologies to Idera...
March 6, 2012 at 3:18 am
kopajb-884292 (3/6/2012)
March 6, 2012 at 3:03 am
i have attached an ebook on SQL injection.
what is actually happening? are you loosing tables? are you sure its coming from the website? are you running profile to see where...
March 6, 2012 at 2:44 am
+1 on the AD groups, by far the best way to manage SSRS security
To add on to what Jack already said, if they do not warrent the need to be...
March 6, 2012 at 1:49 am
you would also want to exclude any spid below 50 so that no system processes are picked up as well which could take longer than X seconds
March 5, 2012 at 9:51 am
this will help to capture the deadlock graph 24/7 incase one happens during the night
create a table to store the xml
CREATE TABLE DeadlockDetails
(
ID BIGINT IDENTITY(1,1),
DateCollected DATETIME DEFAULT GETDATE(),
DeadlockGraph XML,
CONSTRAINT...
March 2, 2012 at 8:22 am
Just need to pass in the schema name along with the object name a bit like
sp_helpindex 'ddl.ddlchangelog'
March 2, 2012 at 8:15 am
what is the status of the database?
select state_desc, user_access_desc, is_read_only from sys.databases where name = 'AdminMig'
March 2, 2012 at 8:13 am
select
name
from
cats
union
select
'refund'
something like this?
also isn't this the same as this post here, if so there is no need to cross post
March 2, 2012 at 8:09 am
do you have to use a ## table, could you not just use a # table?
March 2, 2012 at 6:17 am
you would want to build a query up which looks at sys.dm_exec_requests and cross applies it to sys.dm_exec_sql_text where the sys.dm_exec_requests.total_elapsed_time is greater than the number of seconds what you...
March 2, 2012 at 6:07 am
take a look at this link http://msdn.microsoft.com/en-us/library/ms188902.aspx, should give you what you need
March 2, 2012 at 4:10 am
maybe this url will help here
March 2, 2012 at 2:44 am
Viewing 15 posts - 5,716 through 5,730 (of 6,395 total)