Viewing 15 posts - 8,761 through 8,775 (of 13,460 total)
another version, this with some exclusions, since when someone says "del3ete everything" , they never think it through,a nd afterwards the say "well i mean everything except the lookup tables,...
Lowell
September 13, 2010 at 8:54 am
rob.shaw (9/13/2010)
Thanks for your speedy response once again.
I'm probably not making myself clear here. The fact that a "bare-metal" restore has been done means that all the SQL binaries...
Lowell
September 13, 2010 at 8:47 am
rob.shaw (9/13/2010)
Thanks for your input to my problem.
The problem I have is not restoring the master database, but rebuilding it. As I am doing a bare-metal recovery, everything has...
Lowell
September 13, 2010 at 7:32 am
Tom Brown (9/13/2010)
Lowell
September 13, 2010 at 6:14 am
auto_increment is access or mysql syntax i think it's not mapped to the SQL equivalent of IDENTITY when you run it in SSMS; simply replace that with IDENTITY(1,1) and your...
Lowell
September 13, 2010 at 4:44 am
rob take a look at this thread on the same issue:
RE: Restoring Master database different versions of same service pack
in that thread, i stated that there is nothing of critical...
Lowell
September 13, 2010 at 4:29 am
that only happens if you run the statement in tempdb. those are real object names, but they were dynamically created by SQL;lots of object names in temp start like that:
from...
Lowell
September 13, 2010 at 4:17 am
charindex returns the starting position of one item.
to find two items, you need two searches;
CHARINDEX ( ' emergency',CommentColumn) > 0 OR CHARINDEX( 'not secure',CommentColumn) > 0
more likely, you...
Lowell
September 13, 2010 at 4:10 am
another possbility is to bcp the query to disk, then open it up and find/replace the delimiter(tab,comma?) with </td><td> and replace all CrLf with </tr><tr>;
append the leading and trailing table...
Lowell
September 13, 2010 at 3:54 am
personally, i like queries as attachments;
at one point, i know i wanted all the data in the html of the email, so i build a simple CLR that formatted the...
Lowell
September 13, 2010 at 3:51 am
Alvin Ramard (9/12/2010)
Alvin Ramard (9/12/2010)
Gail, you might want to bring a certain piece of steel with you if you go revisit that BIT datatype thread.
That OP is now on my...
Lowell
September 12, 2010 at 5:27 pm
did your cursor just create the file prior to moving it? it's quite possible that the command to create the file was issued, and the disk sub system is still...
Lowell
September 12, 2010 at 5:10 pm
is this happening directly in a SQl statement run in SSMS, or are you using something else?
for example, if you are using a typed dataset in .net, which includes...
Lowell
September 12, 2010 at 3:57 am
rbaskett (9/10/2010)
Dynamic sql works, just curious why pos (plain old sql) doesnt
it's the compiler rules...you've probably seen it:
Msg 111, Level 15, State 1, Line 57
'CREATE VIEW' must be the first...
Lowell
September 10, 2010 at 1:49 pm
data format nazi
no solution for you!
i guess i'm feeling generous;
I didn't even bother looking at the request, as the lack of consumable data was as far as i cared to...
Lowell
September 10, 2010 at 1:25 pm
Viewing 15 posts - 8,761 through 8,775 (of 13,460 total)