Viewing 15 posts - 2,071 through 2,085 (of 2,904 total)
Joseph's answers are good for the transaction logs for user databases, but the TEMPDB is designed to grow and not be backed up. Stopping and restarting the services rebuilds the...
May 18, 2004 at 6:41 am
Have you tried:
UPDATE tablename
SET columnname = @variable1 + @variable2
-SQLBill
May 17, 2004 at 1:47 pm
How are you attempting to do the reindex?
There are two methods normally used. First is to drop all the indexes and then recreate them (DBCC DBREINDEX), the second is to...
May 17, 2004 at 1:45 pm
I don't do this, but have you considered REPLICATION or Log Shipping instead of backups?
You can find out more about those in the Books OnLine, or do a search on...
May 14, 2004 at 1:18 pm
Here's the issue:
NULL is unknown, it has no value. When you add something and NULL together the SUM is NULL. So 1 + 2 + NULL does NOT equal 3,...
May 14, 2004 at 1:15 pm
One very important thing to remember:
RESTORE the database using WITH NORECOVERY, the RESTORE the first log WITH NORECOVERY, then the last log using WITH RECOVERY.
Oh, second thing to remember....if your...
May 14, 2004 at 7:56 am
How did you attempt to add the user?
I'm guessing you might have tried to create a new user instead of GRANTing access to the database to the existing user.
-SQLBill
May 14, 2004 at 7:48 am
The only log viewer/reader that I have heard about is from Lumigent. But according to their website it only works on 7 and 2000. But it 'appears' to imply that...
May 14, 2004 at 7:36 am
Your friend obviously entered something wrong during the install. Can we tell what that was? No. Unfortunately we weren't there when it was installed.
Do you know at what point the...
May 13, 2004 at 1:10 pm
According to the BOL:
You can create views only in the current database. However, the tables and views referenced by the new view can exist in other databases or even other...
May 13, 2004 at 1:02 pm
Yep Steve, that's the article I was referring to. For Jonathan and anyone else who might read this post and need the information - here's the link to the article:
May 13, 2004 at 12:51 pm
This is a duplicate post and has already been answered.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=6&messageid=115242
-SQLBill
May 13, 2004 at 8:34 am
If you need to find out which port is being used by SQL Server:
On the server, open a command prompt (Start>Run type in cmd and click ok), type netstat -a
then...
May 13, 2004 at 8:32 am
Are you running AntiVirus programs at night? Are they checking the .mdf/.ldf files? If so, that may be causing your problem.
If you are running AntiVirus programs against your database, I...
May 13, 2004 at 8:24 am
Two words:
SLAMMER WORM!
The default of a blank password for the SA account was utilized by Slammer. The fact that so many people did not have the SA login protected made...
May 13, 2004 at 8:20 am
Viewing 15 posts - 2,071 through 2,085 (of 2,904 total)