Viewing 15 posts - 991 through 1,005 (of 2,904 total)
All databases have a log and that includes the TempDB. And any transactions on the TempDB are logged.
-SQLBill
June 6, 2006 at 7:00 am
Did you do any database maintenance, such as reindexing (DBCC DBREINDEX) or index defragging (DBCC INDEXDEFRAG)?
That will cause your tlog to grow to huge sizes (reindexing can cause your tlog...
June 6, 2006 at 6:54 am
I do a full backup every day, a diff 12 hours later and tlogs every 4 hours.
Since you use WITH INIT, your tlog backups are worthless. You need ALL the...
June 2, 2006 at 11:44 am
The SQL used for Access (Jet-SQL) is not the same as the SQL used for SQL Server (Transact SQL). They are similar but different. The differences might be causing your...
June 1, 2006 at 11:15 am
When you restore a database, normally you DON'T create it first. In your case, you have two options:
1. DROP the database and then do the restore, or
2. RESTORE the database...
June 1, 2006 at 7:06 am
Okay. But did it include WITH NORECOVERY or WITH STANDBY? It probably didn't. That means you can't add any more backup files.
RESTORE DATABASE mydb
FROM Blah
That defaults to WITH...
May 31, 2006 at 12:30 pm
Couple of thoughts.....
1. Have you run the subquery by itself to ensure it returns something that matches c.mgr?
2. This portion of the WHERE could be a problem: and t.Mgr =...
May 31, 2006 at 7:03 am
You don't give table/column names nor data types. And you don't give sample data.......so......
SELECT *
FROM MyTable
WHERE MyDate = (SELECT MAX(MyDate)
...
May 26, 2006 at 1:29 pm
Can you store the number as a DECIMAL instead of a VARCHAR?
VARCHAR, being a string, sorts alphabetically.
DECIMAL, being a number, will sort numbers propery.
-SQLBill
May 26, 2006 at 7:50 am
We can't tell you. We don't know all the facts. Like, what else will be happening on the database? The more transactions occuring, the longer it will take.
That said......I just...
May 24, 2006 at 12:15 pm
Yes. Apply the same MDAC to the server with SQL Server.
-SQLBill
May 24, 2006 at 12:12 pm
Are you doing backups on all your databases? Are you doing transaction log backups on any databases where the recovery mode is set to FULL?
I agree that's a lot of...
May 24, 2006 at 12:10 pm
Query Analyzer
Enterprise Manager
SQL Profiler
Veritas Backup Exec
Crystal Reports
-SQLBill
May 24, 2006 at 7:11 am
The problem with Auto anything, is that SQL Server will do it 'when it feels like it'. It chooses when is the best time to run that command, so...
May 23, 2006 at 1:27 pm
Without seeing the code, it's going to be almost impossible for us to help with this.
My guess would be what you say it can't be......somewhere in your script you have...
May 23, 2006 at 1:23 pm
Viewing 15 posts - 991 through 1,005 (of 2,904 total)