Viewing 15 posts - 7,006 through 7,020 (of 14,953 total)
You shouldn't need to truncate the log file. You should be able to manage that by taking log backups. Since you need to do that anyway for log...
February 23, 2010 at 11:29 am
Check this article, see if it helps: http://www.sqlservercentral.com/articles/T-SQL/65540/
February 23, 2010 at 10:29 am
GilaMonster (2/23/2010)
Are we geeks or not?
Yes.
February 23, 2010 at 9:52 am
Countdown to 12000?
Why bother? I think powers of 10 will be enough for this thread! 🙂
February 23, 2010 at 9:52 am
Alvin Ramard (2/23/2010)
Roy Ernest (2/23/2010)
george sibbald (2/23/2010)
Roy Ernest (2/23/2010)
george sibbald (2/23/2010)
any takers. We need DBCC timewarp over hereI hope the OP investigates it further before he tries any recovery.
cheers Roy...
February 23, 2010 at 9:50 am
Mainly, it means you won't be able to do all traditional/normal/required DBA functions without help from the admins.
If, for example, you need to restart the SQL service after a failure,...
February 23, 2010 at 9:48 am
Please only post each subject one time. Not necessary to post in multiple forums.
February 23, 2010 at 9:38 am
"Mail queued" is what it's supposed to show. That means it's in the queue to send and should go.
February 23, 2010 at 8:10 am
The best you'll get on this is doing log backups on a regular basis, like every 15 minutes, or maybe even more frequently.
Then, assuming your logs are on a different...
February 22, 2010 at 2:38 pm
Ray K (2/22/2010)
February 22, 2010 at 1:53 pm
Is DBMail enabled on the server?
If so, does it have a profile set up?
If so, is the account information correct?
If so, are you calling sp_send_dbmail with the correct parameters?
February 22, 2010 at 1:14 pm
I'll say the same thing I always say: Do pivoting in the front end, not in the database. Easier, more efficient, gives the end user more options.
However, if you...
February 22, 2010 at 1:06 pm
James Goodwin (2/22/2010)
Why is everyone using CASE WHEN (number % 5)=0 And (number % 3)=0, instead of CASE WHEN (number %15) = 0?
I want to...
February 22, 2010 at 10:22 am
CirquedeSQLeil (2/22/2010)
GSquared (2/22/2010)
SET NOCOUNT ON;
DECLARE @Table1 TABLE (
ID int IDENTITY PRIMARY KEY,
Number int);
DECLARE @Number INT;
SELECT @Number = 1;
WHILE @Number <= 100
BEGIN
INSERT INTO @Table1...
February 22, 2010 at 10:20 am
Steve Cullen (2/22/2010)
February 22, 2010 at 9:35 am
Viewing 15 posts - 7,006 through 7,020 (of 14,953 total)