Viewing 15 posts - 1,876 through 1,890 (of 2,904 total)
What do you mean by deleted?
Do you have the backup jobs set for overwrite?
Do you have the backup files set to expire?
-SQLBill
August 10, 2004 at 2:11 pm
I personally don't like 3rd party software backing up my SQL Server databases. I've encountered problems in the past. What I do is a SQL Server backup to disk, then...
August 10, 2004 at 2:09 pm
First, SQL Server does not STORE the DATETIME data type in ANY format.
It does store it as an 8 byte value. 4 bytes are the number of days since a...
August 10, 2004 at 8:02 am
You are INSERTing GETDATE() into a table. Is the value Date_Received a DATETIME data type or a VARCHAR?
If it's DATETIME, then format doesn't matter. SQL Server does not STORE dates...
August 10, 2004 at 7:53 am
Just give the user access to their own database and not any other database.
In Enterprise Manager, drill down to Security, expand that and click on Logins. Find the Login that...
August 10, 2004 at 7:44 am
Three thoughts:
1. any index can be dropped. Period. However, it can affect the efficiency of queries. If your queries don't/won't use the index, then dropping it will have no effect.
2....
August 6, 2004 at 10:56 am
Shas3,
The reason it took a long time was that the indexes WERE dropped and recreated. EM does a lot of stuff 'behind the scenes'.
For example, if you want to change...
August 6, 2004 at 8:39 am
CREATE CLUSTERED INDEX does cause the non-clustered index(es) to be rebuilt.
Refer to the BOL, use the Index tab, enter CREATE INDEX. Choose the option for Transact SQL. Scroll down to...
August 6, 2004 at 7:06 am
If the services run as Local System, then they can only access the 'local' server. If you want to access a network (domain), the services must be a domain account.
-SQLBill
August 5, 2004 at 8:11 am
I don't know what you mean by 'frequent' login failures. But I have had cases where I was getting login failures every second for a single login. It turned out...
August 5, 2004 at 7:59 am
Couple of thoughts:
Have you checked the Windows Event Viewer logs for error messages at the time of the crashes?
Are the backup files being copied from disk to tape? If so,...
August 4, 2004 at 10:46 am
Also, make sure you have the appropriate licenses. You are setting up an Active/Active cluster (3 instances on each node). That means you have to have a license for each...
August 4, 2004 at 10:38 am
Where are you backing up to - tape or disk? If disk - local or network?
-SQLBill
August 4, 2004 at 7:28 am
Yes.
1. Check the logins that SQL Server services use. These need to be Domain accounts with access to the network drive/directory.
2. Run the backup job using the full UNC path...
August 4, 2004 at 7:25 am
Alvin,
Log files don't have indexes.
Check out the BOL for information on:
DBCC DBREINDEX
DBCC INDEXDEFRAG
-SQLBill
BOL: Books OnLine = Microsoft SQL Server's Help
Found at Start>Programs>Microsoft SQL Server>Books OnLine
Installed as part of the Client...
August 4, 2004 at 7:09 am
Viewing 15 posts - 1,876 through 1,890 (of 2,904 total)