Viewing 15 posts - 2,086 through 2,100 (of 2,904 total)
Is your hard drive partitioned?
you could be running out of space in the partition and need to move the log to another partition.
The transaction log has to keep...
May 12, 2004 at 10:59 am
1. Yes, the MASTER database contains information about the user database. But it's schema level information. The user database is self contained and can be moved to another SQL Server...
May 12, 2004 at 10:50 am
Using Enterprise Manager on the server that hosts the SQL Server, expand to the Instance. Right click on the instance and select Properties. On the General Tab, click on the...
May 12, 2004 at 10:41 am
I believe it's this way:
db_writer is the same as GRANT SELECT TO ...
db_denywriter is the same as DENY SELECT TO...
Why should you use the later instead of just not giving...
May 10, 2004 at 11:45 am
Are you growing the log file by percentage or MB? What size are you growing it by?
This can happen if the log file can't grow fast enough for the incoming...
April 30, 2004 at 1:28 pm
What is the actual command you are using?
Are you telling it to put it on e: or e:\ ?
-SQLBill
April 30, 2004 at 1:23 pm
We need some more information on this one.
1. How are you doing your backups?
SQL Server commands to disk? to tape?
Third-party software to disk? to tape?
2. Any other jobs...
April 30, 2004 at 10:22 am
Also, is your SQL Server patched to SP3a?
-SQLBill
April 30, 2004 at 10:19 am
Almost forgot - what size is the database you are trying to restore to MSDE?
-SQLBill
April 30, 2004 at 10:16 am
What version of SQL Server 2000 was it?
-SQLBill
April 30, 2004 at 10:15 am
You aren't going to be able to recover it via SQL. Even if you could backup the transaction log, you need a full backup to begin the restore.
You MIGHT be...
April 29, 2004 at 12:04 pm
Here's another way to get rid of the extra space:
DECLARE @mystr VARCHAR(20)
SET @mystr = 'test [a] '
SELECT SUBSTRING(@mystr,1,(LEN(@mystr)-CHARINDEX(' ', (REVERSE(@mystr))))) + SUBSTRING(@mystr, (LEN(@mystr)-CHARINDEX(' ' , (REVERSE(@mystr))))+2, LEN(@mystr))
-SQLBill
April 29, 2004 at 9:01 am
Bruce,
It looks like you editted your post instead of Replying to the post. (The first post in the thread is a response to the second post in the thread).
If...
April 29, 2004 at 8:54 am
This sometimes happens because the statistics aren't updated.
Check the BOL for sp_updatestats.
-SQLBill
April 28, 2004 at 8:40 am
QUIT DOUBLE POSTING!
If people have an answer to your question they will post it. If you aren't getting an answer it's because:
1. no one has an answer
2. no one understands...
April 28, 2004 at 7:57 am
Viewing 15 posts - 2,086 through 2,100 (of 2,904 total)