Viewing 15 posts - 1,126 through 1,140 (of 1,655 total)
Not sure if it's god enough for your purpose but have a look at this article:
http://www.sqlservercentral.com/articles/Security/freeencryption/1980/
Markus
October 3, 2007 at 1:10 pm
You can also use the Transfer logins task in DTS Designer. It's pretty straight forward to use.
Markus
October 3, 2007 at 1:07 pm
No, the presence of a database called distribution is not enough. Three reason for this are:
1. The distributor could be on another server
2. Replication might no longer be used
3. You...
October 3, 2007 at 12:54 pm
Hey,
finally somebody coming back to the original topic of this post.
As you can find somewhere in the beginning of this post, I was searching for the record in a...
October 3, 2007 at 2:30 am
I usually don't use any of these preconfigured roles. If you choose application server it will install IIS and ASP.net. If you want to use Reporting Services you will need...
October 2, 2007 at 12:52 am
Use sp_changedbowner to map another account to the user dbo.
Markus
October 2, 2007 at 12:47 am
Yes,
on large databases it will take a while, to get the results. In my case that was not such an issue, but any improvements on the script(s) are welcome.
Markus
October 1, 2007 at 4:25 am
Jai,
have a look at this post
http://www.sqlservercentral.com/Forums/Topic385732-9-1.aspx
It might help you with your question as well.
Markus
October 1, 2007 at 2:12 am
David,
to disable your alert run:
EXEC dbo.sp_update_alert
@name = N'Test Alert',
@enabled = 0 ;
You could run this before your maintenance jobs start and...
September 28, 2007 at 2:56 am
Andy,
the problem is that when you use dynamic SQL (which you shouldn't) you have to grant permissions to the base tables. Exec on the procedure is not enough.
You can find...
September 26, 2007 at 6:21 am
If you database is in FULL recovery mode, a database backup is not enough to keep the transaction log small. You also need to take regular log backups.
If point...
September 26, 2007 at 4:10 am
Brad,
you cannot lock out or disable an account in SQL 2000. So even if you would read the error log for failed login attempts, there's no action to block an...
September 26, 2007 at 2:46 am
Just to clarify why I recommended Solid Quality.
Being a MCT myself and having talked to a lot of students, I noticed that the standard MOC courses often don't satisfy...
September 25, 2007 at 8:24 am
I would suggest to script out all the database objects, constraints, permissions,users etc.
When drop and re-create the database using the scripts.
This approach has as an advantage over truncating all tables,...
September 25, 2007 at 8:16 am
This will place a filter aon the database id.
declare @intfilter int
set @intfilter = 5
exec sp_trace_setfilter @TraceID, 3, 1, 0, @intfilter
One tip, if your not sure about the paramters and values...
September 25, 2007 at 8:11 am
Viewing 15 posts - 1,126 through 1,140 (of 1,655 total)