Viewing 15 posts - 406 through 420 (of 501 total)
You can use the following script to remove the extra data file:
USE InsLogicQuest
GO
DBCC SHRINKFILE ('InsLogicQuest_DataEm03',EMPTYFILE)
GO
ALTER DATABASE InsLogicQuest
REMOVE FILE InsLogicQuest_DataEm03
GO
This will move all of the data to the InsLogicQuest_Data data file...
July 3, 2008 at 2:02 pm
I think Gail has provided the correct answer. I have seen this happen when anti-virus software is scanning the data files. You can stop the anti-virus service, restart the SQL...
July 3, 2008 at 1:44 pm
You will also need to remove all subscriptions first. Per BOL:
An article cannot be removed if one or more subscriptions to it exist. This stored procedure (sp_droparticle) is executed at...
June 2, 2008 at 3:26 pm
We use LiteSpeed to backup a 2TB db to local disk in about 2.5 hours. We do weekly full and daily diff since the db is in Simple recovery mode....
May 23, 2008 at 3:51 pm
JumpstartTV.com has some SSIS examples under:
Channels > Technology > Database > SQL Server > SQL Server 2005
April 28, 2008 at 3:49 pm
Right-click on the SQL Server Agent in Enterprise Manager, select the "Job System" tab, and increase the value for "Maximum job history rows per job".
I believe the default is 100....
April 18, 2008 at 4:21 pm
I believe this is the article you are referring to: http://support.microsoft.com/kb/949095
Looks like it will be released sometime next month.
March 21, 2008 at 2:55 pm
WOW.... Thanks Matt. Guess I need to go back to the coffee machine. I tried to make this way too difficult.
March 18, 2008 at 1:00 pm
The Blackberry/Smartphone debate came up at the company I work for. It was decided to use Blackberry because it uses a push technology where a smartphone uses a pull technology....
February 15, 2008 at 5:17 pm
You could remove all the users except you from the database so no one but you can access it.
February 15, 2008 at 4:54 pm
I have used Lightspeed for years and it works great, however it's fairly pricy. I have heard from Quest reps that a row level restore is possible with the enterprise...
February 1, 2008 at 2:02 pm
Our security folks use Tripwire for auditing like this.
January 30, 2008 at 3:57 pm
We run SQL servers on ESX as well and they work great for small to medium applications. You license one ESX server with SQL Enterprise and all your small/medium db's...
January 24, 2008 at 5:55 pm
The tempdb gets rebuilt each time the SQL Server Service is restarted in both 2000 and 2005. I would not recommend shinking the tempdb as it may have to auto-grow...
January 18, 2008 at 4:58 pm
In the Transform Data Task under options, you can set "Insert batch size" to keep your transaction log from growing out of control on large inserts.
January 11, 2008 at 2:31 pm
Viewing 15 posts - 406 through 420 (of 501 total)