Viewing 15 posts - 5,791 through 5,805 (of 13,460 total)
well, i have a shared web server out there somewhere, so i throw my screenshots there, and link directly to them.
so if you are not linking to an image you...
Lowell
March 15, 2012 at 5:14 am
Login Failed for user '' looks a lot more like a blank username was passed to the server, rather than the password changing.
otherwise i'd expect the error to say Login...
Lowell
March 14, 2012 at 3:22 pm
SQLKnowItAll (3/14/2012)
Lowell
March 14, 2012 at 3:16 pm
the error is here: one column is missing a comma, so the field is used ans an alias instead:
TechOwner_Transit,
TechOwner_Department
Tech_Vendor,
Lowell
March 14, 2012 at 11:17 am
to check that one, specific value, this will do what you ask, but you must change the "StrongPassword" to whatever the key is the developers gave you:
USE tempdb;
-- create symmetric...
Lowell
March 14, 2012 at 8:46 am
sql renames tables via a stored procedure..the syntax you are using is appropriate for Oracle only, i think.
sp_rename 'OriginalTableName','NewTableName'
--or
-- if you have two items with the same name but different...
Lowell
March 14, 2012 at 8:00 am
krypto recopy my post, i edited it to use all nvarchar(max) columns; DESX uses varbinary as the cypher results, but AES is still text, so i tweaked and re-tested, and...
Lowell
March 14, 2012 at 7:36 am
here's exactly how i've done it, along with the link i used to build my model.
I used DESX, and changed the code below to AES_128.
note AES requires Server 2003.
--http://www.4guysfromrolla.com/articles/022107-1.aspx
-- use...
Lowell
March 14, 2012 at 7:29 am
After you've deployed it once, you can script the assemblies out, just as Nils is describing;

Lowell
March 14, 2012 at 6:52 am
Paul take a look at this post here in the Discussions thread;
http://www.sqlservercentral.com/Forums/FindPost1079779.aspx
That post ( a few posts above this) has a much more modern scripting style that correctly takes into...
Lowell
March 14, 2012 at 6:30 am
Cadavre (3/14/2012)
This will create 1,000,000 rows of pseudo-random unique firstName, secondName, e-mail address and mail address.
I like your example Cadavre, but there's a possbility of creating names that contain unintenteded...
Lowell
March 14, 2012 at 6:23 am
you could do it with a suite of DDL triggers, but would it not be easier to tell the developers not to do it.
it seems a little extreme to do...
Lowell
March 13, 2012 at 3:40 pm
sure just add something simple like Firstname + '.' + Lastname + '@fake.com' to generate John.Smith@fake.com
Lowell
March 13, 2012 at 11:02 am
no tool, documented or not that i ever saw to do this;
i've had to script this out manually, which is a bitc...er i mean .. rather involved.
here's my old mental...
Lowell
March 13, 2012 at 10:50 am
John Chiu (3/13/2012)
Application group like 'control' and don't want use SSIS
ahhh they are scared of the claw SSIS!

Lowell
March 13, 2012 at 10:40 am
Viewing 15 posts - 5,791 through 5,805 (of 13,460 total)