Viewing 15 posts - 1,336 through 1,350 (of 2,469 total)
ron - here's a link that should give you pointers in the right direction...
August 20, 2005 at 10:20 am
looks like you're appending to the previous backup instead of overwriting it!!! - that's where I would look first!
August 20, 2005 at 10:07 am
Salvatore - FINALLY....the logic that Farrell and I were looking for....
Again, I apologise for not having the time to fully test this as I...
August 20, 2005 at 9:51 am
you don't say what other columns you have in your table...regardless - here's one way to do it (source:ken henderson's "guide to t-sql")...
create a second table with an identical structure...
August 19, 2005 at 5:47 pm
CHAT........I never chat....you must have me confused with someone else!!!
August 19, 2005 at 7:36 am
now that makes perfect sense...thx. for the interpretation - would've been puzzling over this all day long otherwise...
August 19, 2005 at 7:25 am
that's what my question is about remi - when all the system dbs have a sid of 0x01.. why did andy change the query to....
SELECT name FROM sysdatabases WHERE sid...
August 19, 2005 at 7:10 am
I just reread the article to start off my morning with a few laughs and I was wondering about this...
Q: What is the model DB?
A: It isn’t used at all....
August 19, 2005 at 6:58 am
you could run a query like this in the master db....
select name, dbname, hasaccess from syslogins
August 19, 2005 at 6:20 am
example of combining chris's solution with shawn's alternative would be:
DECLARE @string VARCHAR(10)
SET @string = 'abc'
PRINT SPACE(10 - LEN(@string)) + @string
August 19, 2005 at 5:56 am
what about tempdb ?!
Andy - I still don't understand how explicitly eliminating the system dbs works - doesn't WHERE sid 0x01 do just that - not include the system...
August 19, 2005 at 5:40 am
dbcc reindex ????
probably not...not with reset to 1
...soliloquy time!!!
August 18, 2005 at 9:53 pm
Kim - you could run the sproc from QA and under tools - options - results tab - set the default results target to results to file - when you...
August 18, 2005 at 9:27 pm
The interesting question for me is whether there's any cause-effect there...
sure there is - I just followed the motivation-by-insult link that lee posted...I've often wondered why celko has even deigned...
August 18, 2005 at 12:00 pm
funny you should say that Merrill...because for me - the single-mindedness - (actually - should correct that to the contemptuous and ridiculing tone of instruction) - has been such a...
August 18, 2005 at 11:23 am
Viewing 15 posts - 1,336 through 1,350 (of 2,469 total)