Viewing 15 posts - 9,031 through 9,045 (of 13,460 total)
take a look at this thread about logon triggers...
you could make a trigger like the example that refuses a connection if they are using the specific SUSER_NAME() of the account...
Lowell
July 15, 2010 at 12:31 pm
we have a handful of tables that require what you are asking;
what we did was add an additional column to the table, where the default value is the location/server/identifier for...
Lowell
July 15, 2010 at 12:25 pm
jvanderberg (7/15/2010)
Lowell
July 15, 2010 at 12:13 pm
here's some code that will change every non-dbo schema-ed table to be in the dbo schema again. you'd need to tweak it to cover procs/views/functions, if that is an issue...
Lowell
July 15, 2010 at 12:11 pm
i think you'll have to script out all the functions,views and procedures to a file, then do a find and replace...
P1. -->[P2].
[P1] -->[P2]
then replace each CREATE PROCEDURE/CREATE FUNCTION/CREATE VIEW with...
Lowell
July 15, 2010 at 11:43 am
Auto update stats only gets triggered when 20% of the rows in a table are modified...on small tables, that's fine, but on a big table, say a million rows,...
Lowell
July 15, 2010 at 11:32 am
personally I usually put the results of a proc into a temp table, like this:
CREATE TABLE #WHORESULTS (
[WHORESULTSID] ...
Lowell
July 15, 2010 at 11:23 am
i have yet to find a situation where a trigger featuring a cursor cannot be replaced with a set based operation. Usually a trigger might have a cursor because the...
Lowell
July 15, 2010 at 11:18 am
you cannot get it to prompt for a value. it's not designed that way...it is designed to run unattended.
what you can do is make the job check a value in...
Lowell
July 15, 2010 at 9:52 am
well, because Express does not HAVE analysis services or SSIS, getting an error message about being unable to analyze them for upgrade is a non issue.
I don't see anything preventing...
Lowell
July 15, 2010 at 9:42 am
the devil is in the details...
what is the real name of the proc?
for example, you know that anything that starts with "sp_" is assumed to be in the master database...maybe...
Lowell
July 15, 2010 at 5:49 am
sp_depends is 100% accurate for tables functions and views. you cannot create any of those things with a dependency to another object unless the object exists.
because of the way...
Lowell
July 15, 2010 at 4:55 am
also i'm under the impression that verswion is more tied to the SQL the db is restored on...i took my SandBox from 2005, restored it on my sql 2008, and...
Lowell
July 15, 2010 at 4:47 am
also consider this: change the presentation so it is not user centric...make it functionality centric.
a tree view with branches and sub branches of your modules and sub modules would probably...
Lowell
July 14, 2010 at 5:42 pm
from a security presentation standpoint, I'd think that seeing 22 rows one for each security module, and having usually 4 security points, but sometimes 7 or 8 points would be...
Lowell
July 14, 2010 at 5:30 pm
Viewing 15 posts - 9,031 through 9,045 (of 13,460 total)