Viewing 15 posts - 20,896 through 20,910 (of 39,834 total)
We gave the SQLSaturday event and infrastructure to PASS. I'm sure they'll announce it at some point today or tomorrow.
We are hoping PASS will continue to grow this into even...
February 3, 2010 at 9:47 am
Gsil,
You get double points for helping that individual.
February 3, 2010 at 9:44 am
You need to decide what you want to capture. Then create a table store the info. (user, time, table, etc.)
Here are a couple examples on building a trigger:
http://www.sqlservercentral.com/articles/Administration/auditingyoursqlserverpart1/917/
http://www.sqlservercentral.com/articles/Triggers/triggersforauditing/2143/
http://www.sqlservercentral.com/articles/Triggers/auditingtriggers/579/
February 3, 2010 at 8:58 am
Also, a ref: Setting Up Windows Service Accounts.
February 3, 2010 at 8:54 am
Ultimately, no, there is no way to prevent a domain admin from accessing SQL Server. If the client owns the physical box, then they can get to everything. Not sure...
February 3, 2010 at 8:53 am
LOL, I was working at the nuclear station, about 40 miles from my house. Was a good opportunity as a grad student, so I did it. Loved it.
Got promoted, offer...
February 3, 2010 at 8:42 am
You would have to scan the trace information for deletes. You could use a trigger to capture delete info and drop it in another table.
February 3, 2010 at 8:33 am
I used to drive 110 miles each way for a job. Did that for about 6 months.
February 3, 2010 at 8:28 am
Tempdb is a database, like the others ones on your system. If it grows, it needs that space to grow. It does not shrink back down once a process is...
February 3, 2010 at 8:24 am
Not sure you can read the error log with T-SQL. It's just a text file, so you can scan it with FIND, TAIL or other command line utilities. The downside...
February 3, 2010 at 8:17 am
That's an interesting thought on the partitioning. I would think it would be an issue. If you go to SSDs, I think you want to use the entire drive as...
February 3, 2010 at 8:11 am
You're certainly not forced to pay for an upgrade, but why would you expect someone to upgrade a tool for free?
February 3, 2010 at 8:08 am
Will the database still be correct for testing if you have orphaned rows?
Typically you truncate the children, then the parents. That way your relationships are intact.
February 2, 2010 at 5:23 pm
I don't believe you can do this with the mdf as well.
February 2, 2010 at 5:22 pm
ALTER LOGIN (http://msdn.microsoft.com/en-us/library/ms189828%28SQL.90%29.aspx) doesn't map to users. the ALTER USER (http://msdn.microsoft.com/en-us/library/ms176060%28SQL.90%29.aspx) is what you use to connect the login to the user.
February 2, 2010 at 5:21 pm
Viewing 15 posts - 20,896 through 20,910 (of 39,834 total)