Viewing 15 posts - 361 through 375 (of 692 total)
How about
DBCC DBREPAIR(database_name, dropdb)
Steve
October 8, 2004 at 2:06 pm
The first thing that comes to my mind would be an audit table which would record the old price and when it was changed. Could be updated via a trigger.
Steve
October 8, 2004 at 12:59 pm
Have you tried sp_detach_db or taking it offline in Enterprise Manager?
October 8, 2004 at 12:55 pm
If your file locations are consistent, here's a little script that will give you the physical file names on the server. From there, you can query sysfiles to learn which...
October 8, 2004 at 12:33 pm
You can see the virtual log files within your log by running
dbcc loginfo
A log must have at least 2 virtual log files, and when SQL creates a log, it creates...
October 8, 2004 at 12:21 pm
You can't apply logs from one database to another, which is what you would be trying to do by applying the 2K logs to a fresh upgraded 7.0 db. You...
September 30, 2004 at 1:55 pm
The proc
create proc test
@id int,
@name char(10) output,
@city char(20) output,
@state char(2) output
as
select
@id = id,
@name = name,
@city = city,
@state = state
from test_table where...
September 30, 2004 at 10:33 am
Load the results from sp_helptext into a temporary table, one record per line of text.
Steve
September 29, 2004 at 2:34 pm
I think you should just wait. "Killed/Rollback" in your processes means that the process WAS killed and it IS rolling back. You really shouldn't stop the rollback. Could wind up...
September 29, 2004 at 12:43 pm
I had always heard "release to manufacturing" also. But I thought that doesn't really make sense. Release to marketing makes more sense. So, I decided to go do a search...
September 29, 2004 at 7:05 am
Why do you need to shrink it? It would be best just to leave it at the larger size. Your job will run more efficiently and you will have less...
September 29, 2004 at 6:54 am
Well, you could script the tables without the foreign keys. Build the tables, then go back and script the foreign keys.
Steve
September 23, 2004 at 12:36 pm
Run profiler to determine "who" is executing the command. Might give you some clues as to where its coming from.
Steve
September 22, 2004 at 4:19 pm
DBCC SHOWCONTIG will give you what you need. The main thing to look at is Scan Density. The lower the value (from 100) the more fragmented the index. Also look...
September 22, 2004 at 4:14 pm
Viewing 15 posts - 361 through 375 (of 692 total)