Viewing 15 posts - 451 through 465 (of 540 total)
Run this script to find out how much free space you have in your database.
-----------------------------------------------------------------
Set Nocount On
Create Table ##filestats (
DbName varchar(100) NULL,
FileID int NULL,
FileGroupID int NULL,
FileTotalSizeMB ...
December 27, 2007 at 8:07 am
I don't think there is a way to do what you're asking.
You can remove EM all together from that user and let them use Excel.
Here is how:
December 26, 2007 at 12:13 pm
check this out:
December 26, 2007 at 8:27 am
which replication mode are you using for Server C?
December 21, 2007 at 12:16 pm
in the solution explorer
1. Right click on your project name and select properties.
2. Click on deployment
3. under the target section type servername and database name.
if the database does not...
December 21, 2007 at 12:10 pm
December 21, 2007 at 12:00 pm
copy and paste your update statement from the profiler into query analyzer and see if it runs.
if not can you post the DDL for this table and the update statement?
December 21, 2007 at 11:54 am
December 21, 2007 at 11:49 am
you can run this script on each server
make sure xp_cmdshell is turned on
--------------------------------------------------------
SET nocount ON
DECLARE @ip VARCHAR(15)
CREATE TABLE #ip (line VARCHAR(255))
INSERT #ip
EXEC master.dbo.xp_cmdshell 'ipconfig'
DELETE #ip
WHERE Charindex('IP...
December 21, 2007 at 11:45 am
Thank you all for helping me out
bbychkov looks like sql server is flushing the memory properly after setting the max to 6GB.
December 5, 2007 at 7:58 pm
Can you recap what you where trying to accomplish to get to these errors?
November 21, 2007 at 10:50 am
bk
Was the database recently renamed, dropped and recreated?
Error Log should contain an entry of a full database backup like this:
Date11/19/2007 3:00:30 AM
LogSQL Server (Current - 11/21/2007 11:17:00 AM)
SourceBackup
Message
Database backed up....
November 21, 2007 at 10:43 am
that pretty much sums it up.
it also depends on the dr data center...
You have to have the same exact type of hardware and software as in prod.
Disaster Recovery options depend...
November 1, 2007 at 3:15 pm
Download and install these drivers.
http://www.oracle.com/technology/software/tech/windows/odpnet/64-bit/index.html
Oracle server 64 bit or 32 bit?
October 5, 2007 at 11:26 am
never mind someone already mentioned this to you.
September 14, 2007 at 9:02 am
Viewing 15 posts - 451 through 465 (of 540 total)