Viewing 15 posts - 7,546 through 7,560 (of 13,460 total)
here it is, i think: Jeff Modens "Replace Multiple Spaces With One" Article[/url]
Lowell
May 19, 2011 at 2:40 pm
ok what i posted works for my sample data, but not all situations...but i swear it's a variation of that concept.
Lowell
May 19, 2011 at 2:31 pm
there is an easy way, but it does require nested replaces; it will remove any number of repeating chars with a single one.
I THINK this is how it works by...
Lowell
May 19, 2011 at 2:29 pm
you can use the row number function to do paging...is that what you are looking for?
I don't want to use order by and then top
is this a homework or...
Lowell
May 19, 2011 at 12:55 pm
what if you are in the office those two days?
do you have anything in place to track it when you ARE there?
(Is you making changes to the database behind my...
Lowell
May 19, 2011 at 6:40 am
Lowell
May 19, 2011 at 6:35 am
there are like three different versions of sp_help_rev_login...one for 2000, and two others for 2005/2008 i believe.
you have to use the one specific to what you are exporting from.
this is...
Lowell
May 18, 2011 at 2:18 pm
Here's a Calendar Table Generator that I put together; it features all US National Holidays, as well some other that were fun to research and code; if the holiday is...
Lowell
May 18, 2011 at 2:14 pm
on the SQL2005 server, you'll want to download and use Microsofts sp_help_rev_login, which scripts out the logins on the other server.
then run the results on the 2008 server.
once the windows...
Lowell
May 18, 2011 at 12:03 pm
ugh;
no dev area and developers making direct changers to production(since it;'s the only work area?); Paul's advice about liquor and updating the resume sounds even better now....
how about a...
Lowell
May 18, 2011 at 7:46 am
DBAgal (5/18/2011)
Lowell
May 18, 2011 at 7:21 am
a rename of an existing object doesn't count as a DDL operation, so it wouldn't be in the default trace; I investigated that on a similar thread previously.
you'd want to...
Lowell
May 18, 2011 at 7:06 am
here's one way to do it; I'm just creating a table full of high ascii chars, cross applying them, then using patindex to filter:
with mySampleData
As
(SELECT top 255 row_number() OVER (ORDER...
Lowell
May 17, 2011 at 1:49 pm
PhilPacha (5/17/2011)
-c controls the output of data - in this case, "character."
-r controls the row delimiter
-c -r /n
Review the "BCP" entry in Books Online.
Everything...
Lowell
May 17, 2011 at 12:52 pm
homebrew01 's method is exactly how I've done it in the past.
now for "special characters", what does that mean? high ascii?(so you have to export the results as NVarChar?), html...
Lowell
May 17, 2011 at 12:00 pm
Viewing 15 posts - 7,546 through 7,560 (of 13,460 total)