Viewing 15 posts - 226 through 240 (of 294 total)
Thanks for the responces. I was able to resolve the issue.
March 26, 2006 at 10:25 pm
Why would you want to modify the create date of an object unless you were trying to hide something???
February 14, 2006 at 5:38 pm
Let me try and answer some of the questions.
The Id IS the primary key and yes the ineserst are date based. So the ID as PK and a clustered on...
February 13, 2006 at 7:42 pm
Hi there,
To place your database in emergency mode, use the following command:
SP_CONFIGURE 'allow updates', 1
RECONFIGURE WITH OVERRIDE
GO
UPDATE master..sysdatabases set status = -32768 WHERE name = 'pubs'
GO
SP_CONFIGURE 'allow updates', 0
RECONFIGURE...
February 6, 2006 at 11:45 pm
I am the Senior DBA (nice title) at one of the major banks in Australia and they do pay for traing for us. There is a budget allocated yearly per...
January 25, 2006 at 12:04 am
I would also check the I/O of the second more powerful server and make sure that the hardware is all ok. You could have faulty hardware resulting in the bad...
January 24, 2006 at 12:27 am
Henry,
I would ask the DBA to do this for you. It seems that you might not be 100% sure of what you are dealing with.
Thanks
January 11, 2006 at 11:05 pm
AB
Once you have shrunk the database you will need to shink the file to free up the space
dbcc shrinkfile (<t-log>, 500) -- shinks the t-log to 500Meg in sise
November 25, 2005 at 12:25 am
You could try putting your database into emergency mode this will then allow you to bcp your data out and you can then re create the database and bcp the...
November 20, 2005 at 7:08 pm
You sure this is not some school assignemt your dont really feel like spending the time doing yourself ?
October 16, 2005 at 11:41 pm
AWE is not enabled for 4GB or less.....you just use the /3GB switch in the boot.ini
September 30, 2005 at 1:43 am
The purpose is to test why an exe would not fire uop in CmdExec. I have an exe that fires up and prompts you for a user name and password....
September 26, 2005 at 8:41 pm
Try using only one #
CREATE TABLE #temptable (...)
INSERT #temptable
VALUES(...)
SET @Err = @@ERROR
IF @Err <> 0
BEGIN
ROLLBACK
RETURN
END
COMMIT
September 9, 2005 at 1:30 am
Viewing 15 posts - 226 through 240 (of 294 total)