Viewing 15 posts - 8,521 through 8,535 (of 13,469 total)
you cannot change the datatype, but can you change the size?
for example, a 8 letter password using AES requires 40 characters to store the hashed value...
so if you cannot change...
October 21, 2010 at 2:37 pm
I think the original poster is out of luck.
when you script a linked server, you get this specific comment/message, telling you that it won't script the password:
/* For security reasons...
October 21, 2010 at 2:32 pm
camiloaguilar1 (10/21/2010)
October 21, 2010 at 1:57 pm
Tara-1044200 (10/21/2010)
how would you get the rest of the databases?
i updated my post with a second sql, probably while you were reading the first version of the post...so the second...
October 21, 2010 at 12:26 pm
camiloaguilar1 (10/21/2010)
October 21, 2010 at 12:23 pm
Tara-1044200 (10/21/2010)
i tried "top 50 percent" but i does not work with distinct and also for bottom 50%
on my db with 51 databases, this gives me 26 rows: what does...
October 21, 2010 at 12:15 pm
make sure you are comparing the actual execution plans, and not the estimated plans....
the estimated woudl probably be teh same on both, but the performance issue is in the actual...where...
October 21, 2010 at 12:12 pm
well you didn't provide any examples of what was going wrong;
here's the data you posted in a consumable format, as well as a query that pulls the data you were...
October 21, 2010 at 11:57 am
Please don't crosspost. It just wastes people's time and fragments replies.
No replies to this thread please. Direct replies to http://www.sqlservercentral.com/Forums/Topic1008657-391-1.aspx
October 21, 2010 at 11:12 am
yes.
each ALTER TABLE statement must be executed seperately, but you can generate all the statements based on the metadata, so it depends what you want to do.
an example might be...
October 21, 2010 at 11:10 am
i don't have a true SQL 2000 installation, and the code works flawlessly in SQL 80 compatibility mode.
try doing a find and replace for INSERT INTO #Results --> INSERT INTO...
October 21, 2010 at 11:01 am
you need to test for the space before ave as well to avoid substrings of a street name:
you are already testing for a space after the {Ave} or {Ave.},...
October 21, 2010 at 10:27 am
Andreas your trigger is currently designed to handle only one row being inserted at a time...
if you are bulk inserting, only one row would be affected when you trip the...
October 21, 2010 at 10:20 am
security is getting tighter and tighter with each iteration of SQL;
it used to be that the Builtin\Administrators group was automatically added as sysadmins when you installed SQL.
That is no...
October 21, 2010 at 9:29 am
BULK INSERT behaves differently for triggers, but not sp_executesql;
it might be the way your trigger is written...lets look at the trigger itself and see if there might be a clue...
October 21, 2010 at 8:31 am
Viewing 15 posts - 8,521 through 8,535 (of 13,469 total)