Viewing 15 posts - 211 through 225 (of 335 total)
As much as hat would kill the network, I haven't seen any other solutions to the problem. If what was originally proposed is indeed the requirement then.
a: Enough free space...
January 20, 2005 at 10:34 am
Are you sure this is a problem. Sqlserver will grab memory when it needs it and very rarely gives back to OS (unless requested to do so). At server start it...
January 20, 2005 at 10:21 am
Are you sure it's empty. I've seen it where you have to use the scroll bars on the screen to find the objects.
Let us know.
Tom
January 20, 2005 at 10:15 am
If the database is running with a domain account and there is space on another server somewhere, you can setup a backup device to a unc path. You will then be...
January 20, 2005 at 10:11 am
Anytime that I have done Sql backups to tape, I use the format option with the first database I backup to that tape and the noinit option with any others...
January 18, 2005 at 8:32 am
If your not using the log file for recovery puposes than I would put the database into the simple recovery model and not worry about it.
If you need full recovery: ...
January 13, 2005 at 1:00 pm
An index is sorted, a constraint is not. Both will have statistics. Index will be used for data lookup.
Tom
January 13, 2005 at 12:53 pm
On top of the index analysis, I would look at changing the order of the exists clause and put the bigger tables to the top of the statement.
set statistics...
January 12, 2005 at 12:41 pm
From looking at the statistics, the problem seems to be with:
Table 'tripacc'. Scan cnt 451, logical reads 17378386, physical reads 0, read-ahead reads 48
That's alot of logical reads on that...
January 10, 2005 at 10:45 am
I would run this with the statistics io on. This will give you the number of scans happening on the tables. My guess is that the address table is considerably...
January 7, 2005 at 8:07 am
A lot of times, for ddl changes, EM will drop and recreate the table. That is why it takes such a long time to complete. Run a trace on it...
January 5, 2005 at 7:41 am
I connect to db2/400. I created an ODBC datasource to the db2, and then created my linked server to the odbc datasource. Works great.
Tom
December 22, 2004 at 1:50 pm
It's in the master.dbo.sysdatabases file.
Tom
November 26, 2004 at 7:19 am
We are doing something similar. I'll customize the solution for you.
Make a table (Security) that has 2 columns: username and division.
Then create a view that join your new Security...
November 24, 2004 at 11:27 am
When does the log file get backed up. If this is happening in a maintenance job and you have shrinkdatabase also turned on, it is possible that the log file...
November 24, 2004 at 10:58 am
Viewing 15 posts - 211 through 225 (of 335 total)