Viewing 15 posts - 3,091 through 3,105 (of 13,469 total)
srimkumarp-720356 (7/22/2013)
We are using only Server level audit trigger.
For example :- I created the login on one server and later drop the same login. Now I want...
July 22, 2013 at 6:19 am
srimkumarp-720356 (7/22/2013)
I want to capturethe Audit Server Security Events , like if any one doing Create / Alter / Drop logins on server level ,...
July 22, 2013 at 5:30 am
truncate is not granular like that; it's inherent in db_owner and db_ddladmin, i believe.
just make sure noone has those rights.
what difference is there if the user is allowed to delete...
July 19, 2013 at 10:27 am
Guras (7/19/2013)
July 19, 2013 at 10:19 am
fraggle i just tested this myself;
i was hoping i could alter a user and remove their mapping to the existing login, but i found i had to crop and recreate...
July 18, 2013 at 12:25 pm
I'd say if you have 14 separate jobs, they should not be scheduled to execute at all. i'd actually remove them to avoid confusion.
instead,
shouldn't you create one single...
July 18, 2013 at 5:36 am
no, not the default trace; you'd need to use the dmvs instead.
the default trace only tracks DDL or database settings changes...create/drop, alter, stuff like that; nothing related to Data access...
July 17, 2013 at 9:38 am
huum (7/17/2013)
I want to capture users logged int o my database from 9-5 and then get the average per day.can i please have the guidence
users don't actually login at a...
July 17, 2013 at 8:14 am
an example of checkign the references HanShi mentioned:
--Objects:
SELECT objz.name,
fn.*
FROM sys.objects objz
CROSS APPLY sys.dm_sql_referenced_entities(schema_name(schema_id) + '.' + objz.name,'OBJECT')fn
WHERE referenced_entity_name ='all_data'
and just in case, you can check the...
July 17, 2013 at 5:58 am
Charles Deaton (7/15/2013)
That wprk fine for dropping the user from the master database. Is it possible to specify the database I need?
just a a USE DatabaseName to the command, if...
July 15, 2013 at 7:27 am
ok ray, this looks like a business "fiscal year" question, right?
ie my biz year goes from july1 to jun30 of the next year?
substitue MyDate for GETDATE() in this query, and...
July 11, 2013 at 8:46 am
rayh 98086 (7/11/2013)
I would like to create a SQL query that will make a decision based on date. For example, if the date is Jun 30,2013 or greater, then...
July 11, 2013 at 8:22 am
http://www.microsoft.com/en-us/sqlserver/editions/2012-editions/express.aspx
go to this page, and click on the red button that says "Download SQL Server 2012 Express"
a div will appear with various downloads, so just click the one that says...
July 11, 2013 at 5:39 am
erikd (7/10/2013)
July 10, 2013 at 12:04 pm
newbieuser (7/10/2013)
OH really? I thought its in MB?
yes it is, but that's what's so tricky! it's not obvious!
how much is 2147483647 MegaBytes?
2147483+ Gigabytes!
2147+ TeraBytes!
July 10, 2013 at 12:00 pm
Viewing 15 posts - 3,091 through 3,105 (of 13,469 total)