Viewing 15 posts - 841 through 855 (of 2,904 total)
1. The minimum size of your TLog will be set based on the Model database (that db is the template used to build all other databases). Check the log file...
October 30, 2006 at 11:20 am
As John said, there are too many variables to go into here...in addition to what he suggests, you have to find out if there is a firewall between the two...
October 27, 2006 at 5:19 pm
The biggest thing it fixes is the security hole that Slammer worm took advantage of. Without SP3a or higher, your SQL Server is vulnerable to the Slammer worm.
This is...
October 27, 2006 at 5:12 pm
It could be many things....how does it authenticate permissions - with a domain controller? Is the connection broken and restarting services reconnect?
How old is your system? Is the hard drive(s)...
October 26, 2006 at 10:11 am
You might search for Lugiment's Log Explorer. Some log readers must be running before you need them, but I think I've heard people say that Lugiment's works on any...
October 26, 2006 at 10:08 am
You could try:
SELECT DISTINCT [SelectionValue] FROM [CIATStaging].[dbo].[ResponseSelectionDictionary] WHERE [SelectionValue] NOT IN (SELECT DISTINCT [SelectionValue] FROM CADS.dbo.AssessmentSelection)
OR IS NULL
-SQLBill
October 25, 2006 at 3:53 pm
The issue is with NULL values. NULL don't equal anything and they don't not equal anything. NULL is like saying I don't know what this value is. ...
October 25, 2006 at 3:52 pm
I had a 300+ GB database (just changed jobs) and I did DBCC INDEXDEFRAG. It doesn't grow the tlog as large as doing the reindexing. Plus, if I had...
October 25, 2006 at 11:56 am
BTW-you can put this in a Stored Procedure.
DECLARE @mytime INT
DECLARE @myhour INT
DECLARE @mymin INT
DECLARE @mysec INT
SET @mytime = (SELECT DATEDIFF(ss, , ))
SET @myhour = (SELECT @mytime/3600)
SET @mytime = (SELECT @mytime%3600)
SET...
October 25, 2006 at 10:16 am
I cannot use SP to do this
Why not?
Look up DATEDIFF in the Books OnLine. Get the results in seconds and then change the seconds into the result you want.
-SQLBill
October 25, 2006 at 10:02 am
Using DBCC DBREINDEX causes the log file to grow up to 2.5 times the size of the database. It has to keep track of the 'state of the database'...
October 25, 2006 at 9:52 am
That's really not something for SQL Server to do. And it wouldn't happen fast - your query would have to go to the database, pull 20 records, go to...
October 23, 2006 at 5:23 pm
Viewing 15 posts - 841 through 855 (of 2,904 total)