Viewing 15 posts - 226 through 240 (of 347 total)
select '' UNION
SELECT DISTINCT state
FROM gl_territory
October 24, 2007 at 3:55 pm
you can't truncate a table variable. you could either use a temp table or just simply create a new table variable and use it and just let them both fall...
October 22, 2007 at 2:06 pm
declare @i as int
declare @sql varchar(20)
set @i = 101
while (@i <= 300)
begin
set @sql = 'kill ' + cast(@i as varchar(4))
execute (@sql)
set @i = @i + 1
end
October 22, 2007 at 2:04 pm
I don't think it is, but I'm not 100% on that. Also, task manager will not show the correct amount of memory being consumed when AWE is on - you...
October 22, 2007 at 12:50 pm
you need to enable AWE to use all your ram. Be sure to add the lock pages in memory permission to your service account.
October 22, 2007 at 10:10 am
we run on R2 SP2 just fine, haven't had any issues
October 19, 2007 at 3:27 pm
OK, I missed that you are using SQL 2000. It would work in 2005 even if the logins are mapped to users in the database. You should just upgrade and...
October 19, 2007 at 1:39 pm
does it fail with the same error using native backups?
October 19, 2007 at 12:44 pm
I don't understand why you cannot drop them and recreate them.
October 19, 2007 at 12:43 pm
Associate in computer information systems. Also have my MCP on sql administration.
I am also a home brewer, but no formal education there:D
October 19, 2007 at 7:29 am
add a new job step. In the Type dropdown, select sql server integration services package. then you need to fill in the appropriate tabs. what you will fill in may...
October 18, 2007 at 9:59 am
That works - thanks a bunch. seems like I tried that one, but I must have had something wrong:)
October 15, 2007 at 1:08 pm
of course if you choose to do the drop db method, always a good idea to grab a backup first.
October 11, 2007 at 10:58 am
yeah, It's been a while since I had to do that, but I believe you would have to stop sql server. move the files. start sql server using traceflag 3608...
October 11, 2007 at 10:57 am
I'm about out of ideas then, short of stopping the sql server if that is a possibility.
October 11, 2007 at 10:13 am
Viewing 15 posts - 226 through 240 (of 347 total)