Viewing 15 posts - 46 through 60 (of 66 total)
works for me in sql 2000.
dbcc traceon (3226)
go
sure u don't have it off in startup param?
is this the blog entry u r talking about?
November 12, 2007 at 12:21 pm
remember that rpc virus a few years ago? it had that 60 second countown then would shut down the pc. one night the network guys worked all night to...
November 12, 2007 at 12:08 pm
how does server2 connect? needs domain credential i believe
November 12, 2007 at 10:08 am
don't think it can be done (short of editing a backup of msdb with a hex editor). may try opening ticket with MS PSS team.
November 12, 2007 at 7:29 am
thanks. now if i could just figure out how to see all the threads i posted to that have recent replies.... 😀
ps. u dont think i'll get to 100 posts?...
November 12, 2007 at 7:26 am
tried creating alias for each other in sql configuration manager?
November 11, 2007 at 4:55 am
have network admin make certain that user permissions are not set to read only on drive
November 8, 2007 at 6:28 pm
u will need to modify if multiple data files. also note that maxsize and growth are in 8kb increments, so need to multiply by 128 to get mb. but, the...
November 8, 2007 at 12:15 pm
-- this will get u started --
SET NOCOUNT ON
Create Table #t (
db varchar(255),
filename varchar(255),
name varchar(255),
int,
maxsize int,
growth int
)
Declare @db varchar(255)
Declare c Cursor
read_only
for
select name from sysdatabases where dbid >...
November 8, 2007 at 12:12 pm
SELECT t1.*
FROM T1
LEFT JOIN T2
On T1.partID = T2.partID
And T1.SellerCountryCode = T2.SellerCountryCode
WHERE T2.partID is NULL
November 6, 2007 at 6:51 am
besides which, celko is provably wrong.
identity fields often make the very best candidates for primary keys in terms of performance. and they certainly don't taint the natural design of the...
October 26, 2007 at 9:47 pm
technically ReportServer and ReportServerTempDB are user databases.
sorry, forgot distribution which is also system db
October 26, 2007 at 1:33 pm
Viewing 15 posts - 46 through 60 (of 66 total)