Viewing 15 posts - 61 through 75 (of 108 total)
Your replsys output looks fine to me, too. What OS and OS service pack are you on?
Also look at sqlsp.out for clues. Two common causes for sp4 install failure are...
January 26, 2006 at 10:04 am
Trailing blanks are ignored in varchar comparisons, and DISTINCT and UNIQUE both follow this behavior:
create table #junk
(crap varchar(10) not null)
insert #junk values ('xxx')
insert #junk values ('xxx ')
select distinct crap from...
January 25, 2006 at 4:53 pm
Variables of the datatype TEXT are not supported in SQL Server 2000, although the engine seems to accept them as parameter declarations. How are you calling this procedure? My guess...
January 25, 2006 at 2:42 pm
Sounds like a lot of work!
For the larger tables, I would suggest using DTS to create a file on the SQL Server machine, and then either bcp in the file...
January 25, 2006 at 1:32 pm
Look in the file replsys.out for clues.
January 25, 2006 at 12:56 pm
use pubs
go
create table #junk
(
Name nvarchar(20),
Rows char(11),
reserved varchar(18),
Data varchar(18),
index_size varchar(18),
Unused varchar(18)
)
insert #junk exec sp_spaceused @objname = 'authors'
insert #junk exec sp_spaceused @objname = 'titles'
select * from #junk
January 25, 2006 at 11:23 am
Check out the Xfind script at:
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1124
January 25, 2006 at 10:58 am
Check out the Xfind script at:
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1124
January 25, 2006 at 10:57 am
You may want to download sp4 again. The error is a sql syntax error during a create procedure statement. Perhaps the script got corrupted.
January 24, 2006 at 5:01 pm
Yes, rapid transaction log growth can be the result of implicit transactions, but such transactions are not necessarily "lousy sql". A single, simple insert-select query from a large table might...
January 24, 2006 at 4:40 pm
I wonder if there is actually that much log activity, or if some process is attempting to maintain the log at a fixed size.
Try:
BACKUP LOG INFOPROD TO DISK = N'D:\MSSQL\BACKUP\INFOPROD_tran_test1.bak'...
January 18, 2006 at 9:40 pm
One more caution: hardware failures can result in gradually worsening corruption, which may not be noticed right away. This can create a situation where seemingly successfully completed backups will actually...
January 17, 2006 at 3:55 pm
What sort of help are you looking for? homebrew01's suggestion to create database maintenance plans is a good place to start. I would make the following recommendations regarding them:
1. Create...
January 17, 2006 at 3:04 pm
SQL Server and Agent use different email sessions. If I remember correctly, a tech net article explained that the reason for hung email sessions was that the client displays a...
January 17, 2006 at 2:18 pm
Using bcp out to a file and a BULK INSERT back in to Table A is a good suggestion. Also good is the suggestion to put the transaction logs on...
January 16, 2006 at 12:23 pm
Viewing 15 posts - 61 through 75 (of 108 total)