Viewing 15 posts - 5,791 through 5,805 (of 13,468 total)
Lynn Pettis (3/15/2012)
SQLKnowItAll (3/15/2012)
Lowell (3/15/2012)
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us...
March 15, 2012 at 1:40 pm
sorry gang, link is fixed.
March 15, 2012 at 1:37 pm
duplicate post.
no need to cross post to multiple forums it fractures the answers you get and makes posters duplicate others work.
the "Recent Posts" link shows us everything.
continue the thread here:
http://www.sqlservercentral.com/Forums/Topic1267763-391-1.aspx
March 15, 2012 at 1:28 pm
i've done what you are asking in another post...if you followed the netiquette, as ColdCoffee suggests, I probably would have posted the solution.
in the meantime, if you search the forums...
March 15, 2012 at 1:11 pm
there's a number of threads here on SSC where the requirement is to remove public permissions in order to comply and lock down a SQL server to DoD standards (google...
March 15, 2012 at 12:55 pm
first, you don't need a trigger...you could simply add a check constraint to prevent that.
ALTER TABLE product1 ADD CONSTRIANT CK_COST_VS_SELL CHECK(costprice <= sellingprice)
your trigger assumes only one row being inserted,...
March 15, 2012 at 10:38 am
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...
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...
March 14, 2012 at 3:22 pm
SQLKnowItAll (3/14/2012)
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,
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...
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...
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...
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...
March 14, 2012 at 7:29 am
After you've deployed it once, you can script the assemblies out, just as Nils is describing;

March 14, 2012 at 6:52 am
Viewing 15 posts - 5,791 through 5,805 (of 13,468 total)