Viewing 15 posts - 5,431 through 5,445 (of 13,460 total)
My new problem now is that I am not getting any e-mails out through database mail to external e-mail addresses.
That issue is caused by the Mail server not allowing...
Lowell
June 6, 2012 at 5:17 am
and here's a code example of 7zip and xp_cmdShell:
--http://www.7-zip.org/download.html
--http://downloads.sourceforge.net/sevenzip/7za920.zip
--xp_cmdshell is limited to ONE set of double quotes.
--one of the paths needs to not contain spaces!
--see 2003 MS KB http://support.microsoft.com/kb/266224
DECLARE @results...
Lowell
June 5, 2012 at 2:25 pm
don't try to move the entire table in one pass;
change it to do a few rows at a time instead, and confirm it's working that way.
tweak the number of rows...
Lowell
June 5, 2012 at 12:46 pm
...some sql statement working slow...
that's going to require an analysis of the specific queries themselves. If you post the actual execution plan of a query that is slow, we...
Lowell
June 5, 2012 at 8:24 am
Nice Article Gianluca!
I added your CLR to my collection; very much appreciated.
Lowell
June 5, 2012 at 5:45 am
it the other server a different SQL server version? When moving a database to another version, changes int he SQL engine make rebuilding the statistics manditory,as they are used differently,a...
Lowell
June 5, 2012 at 4:39 am
doing a SELECT from a large table's going to take time, so yeah, that's a factor. the size of the data, whether there are varchar(max) or image type columns affects...
Lowell
June 5, 2012 at 4:31 am
quoted and coded to make it more obvious.
so what is the issue? the whitespace is changing from the source? is this a fixed width file, or could you consider it...
Lowell
June 5, 2012 at 4:19 am
Sean's refering to my procedure sp_UglySearch;
mine is a parameterized version as a procedure.
for me, i wanted a proc that returned some drill down queries so i could get/find the...
Lowell
June 4, 2012 at 3:11 pm
Also look at this other forum post by genehunter on scripting everything out via powershell:
this was one of my first powershells cripts when i was playing wiht powershell; with some...
Lowell
June 4, 2012 at 2:33 pm
In addition to Jared's sharp analysis, you are updating every row, even if the values are the same.
if there was an index on lnhist_acct_nbr,lnhist_appl_code,Other_Flag_50 my sample code below might...
Lowell
June 4, 2012 at 10:16 am
to continue on what Steve is saying, a hashed password is never unencrypted to it's original value.
what happens is a potential password is hashed,and the two hashes can then be...
Lowell
June 4, 2012 at 9:28 am
scripting options is what you skimmed over; there are lots of stuff you can turn on and off:

Lowell
June 3, 2012 at 6:58 pm
I read your question completely wrong. Manie; Anthony read it correctly.
offhand, getting it in might be difficult; it's just like sending a mail from home versus sending it at work;...
Lowell
June 2, 2012 at 4:15 am
don't believe so; the hash(encrypted binary actually, i think?) of the password is compared to the hash that is stored in credential for the login associated in the sys.server_principals view,...
Lowell
June 1, 2012 at 8:26 am
Viewing 15 posts - 5,431 through 5,445 (of 13,460 total)