Viewing 15 posts - 871 through 885 (of 2,904 total)
Nope, everything I have seen and been told in MS Classes is that it grows by 10% of it's CURRENT size.
-SQLBill
October 6, 2006 at 1:33 pm
Joe,
I run DBCC SHOWCONTIG. That will show how fragmented your indexes are. Check it out in the BOL.
-SQLBill
October 5, 2006 at 11:21 am
Setting a percent will cause exponent growth. It's always growing 10% of the current size. So as the db gets larger it needs to expand even more.
Let's say...
October 5, 2006 at 11:14 am
I do not recommend ever setting the growth to a percent. Set it to 100MB, see if that resolves the issue. If not, increase it to 200 or more.
There are...
October 4, 2006 at 5:20 pm
Open Enterprise Manager. Expand to Security. Find the login, double click on it. Give it permissions to the database including db_owner.
Open Query Analyzer: Run:
USE dbname
exec sp_changedbowner 'new_owner_login'
For example:
USE MyDatabase
EXEC...
October 4, 2006 at 1:34 pm
I believe so. I don't use maintenace plans...I write my own jobs to do what needs done.
-SQLBill
October 4, 2006 at 1:26 pm
A log reader, such as Lumigent's Log Explorer, can show you what commands were run. But I don't believe it will show WHO ran the command.
Like Greg said, there's no...
October 4, 2006 at 1:16 pm
Remember, Differential backups are not the same as TransLog backups. Each differential backup is a backup of ALL the changes since the last full backup.
So, Tuesday's diff is all the...
October 4, 2006 at 1:11 pm
Is your maintenance plan doing reindexing? If so, note that reindexing can cause the log file to grow to 2.5 times the size of the database.
-SQLBill
October 4, 2006 at 1:08 pm
That's normal. I run that on a 300GB database and the log file increases quite a bit. The thing is, it doesn't increase as much as running DBCC REINDEX...
October 3, 2006 at 3:47 pm
It's a legal requirement to encrypt information such as credit card numbers, social security numbers, and other personal information. If the law requires it, your company has to do...
October 3, 2006 at 3:41 pm
BTW- please don't cross post.
-SQLBill
October 2, 2006 at 5:48 pm
Please don't cross post. You also have this in the 2000/2005 TSQL forum. And I posted a response there.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=312785
-SQLBill
October 2, 2006 at 5:48 pm
Does it have to be ordered in this way:
ORDER BY Last_Name, First_Name, Task_Number, Detail_Action_Date desc
If you can ORDER BY Detail_Action_Date,
Then just add TOP 3 to the script.
-SQLBill
October 2, 2006 at 5:46 pm
What happens if they try to register using the IP address vice the server name? Also, have you tried reinstalling MDAC on their system?
-SQLBill
October 2, 2006 at 5:09 pm
Viewing 15 posts - 871 through 885 (of 2,904 total)