Viewing 15 posts - 9,256 through 9,270 (of 13,461 total)
take a look at the thread below; another poster had the exact same problem, except he had semicolons at the beginning at or end;
there are some fine solutions in that...
June 11, 2010 at 7:23 am
what i was getting at is the procedure you menthioned, dbo.xpPutPalletOnQueue
if the procedure features EXECUTE AS in it, It runs with different priviledges, and your application role wouldn't need...
June 11, 2010 at 6:44 am
by normal scripts to fix this problem do you mean the EXECUTE AS clause?
I'm not sure what you mean; you should be able to create a procedure with the EXECUTE...
June 11, 2010 at 5:50 am
here's a question looking at your issue sideways:
if you are running a script to create a database and all it's objects, why not just include a backup of the...
June 11, 2010 at 5:43 am
No, MS sql server is locked into the MS windows operating systems, with no plans for multi-platform.
so while the SQL Engine itself must run in a windows environment, you...
June 11, 2010 at 5:39 am
while there is an event for CREATE_DATABASE you can use for a server trigger, stewartc's questions are right on track....it depends on what you want to do;
he hinted at auto-creating...
June 11, 2010 at 5:36 am
SQL validations typically are CONSTRAINTs, whether a UNIQUE constraint, or a CHECK constraint. you can also use triggers or even functions as a CHECK constraint...so the tools are there...but...
As...
June 11, 2010 at 5:25 am
good question actually.
at some point, the connection to the database that is going to be upgraded has to be input...
Like me, I'm sure you've noticed that you've never seen an...
June 10, 2010 at 7:40 pm
if the stored proc is doing ALTER TABLE and then anything else, i think you have to switch to dynamic sql for the ALTER commands.....that fixes the GO statement, since...
June 10, 2010 at 2:30 pm
sunny.tjk (6/10/2010)
Fantastic Lowell....but I'm not sure what this "ON ALL SERVER FOR LOGON" does.
ahh, that's our point...if you don't have a handle on LOGON triggers, read up on them,...
June 10, 2010 at 1:44 pm
here's a proc i have laying around for that situation with dyn named FK's: drops all the FK's on a specific column in a table
usage is simply EXEC DROP_FK_FROM_SPECIFIC_COLUMN TableName,ColumnName
if...
June 10, 2010 at 1:38 pm
could it be possible that ANOTHER foreign key, a duplicate the specific FK you are looking for, but with a different, dyamically create name exists?
it's possible, unfortunately, to have duplicate...
June 10, 2010 at 1:31 pm
yes you can, but you have to use a logon trigger to do it.
I'm sure there's more to it than the # of connections that you need to figure out...
June 10, 2010 at 12:59 pm
yes you can change compatibility mode without a problem;
compatibility mode only tells SQL to filter the commands coming in against a set of version-specific-syntax; it does not change how the...
June 10, 2010 at 12:45 pm
if the windows user has been explicitly assigned a login withthe server roles sysusers,
or belongs to a windows gorup that has been assigned sysadmin rights (like BuiltIn\Administrators),
then that user...
June 10, 2010 at 12:34 pm
Viewing 15 posts - 9,256 through 9,270 (of 13,461 total)