Viewing 15 posts - 9,151 through 9,165 (of 13,460 total)
why not use a VIEW that is nothing more than a UNION ALL of the three tables in question?
then the view will never be out of sync, and will have...
Lowell
June 30, 2010 at 6:23 am
i thought table variables were exempt? i know if they are in a transaction, and the transaction is rolled back, the table variable is unaffected...does that mean it's not logged,...
Lowell
June 29, 2010 at 3:18 pm
it's not access to the exe.
once again, the point i'm making is the exe trying to use the security context nt authority\system for example to access files or file shares....
Lowell
June 29, 2010 at 12:15 pm
kelvin this may or may not be much help;
i have this saved in my snippets for creating a linked server to Active Directory, and then querying it...in my case, i...
Lowell
June 29, 2010 at 12:07 pm
i guess you missed my point; take a look at this thread, where someone had a very similar issue to yours.
http://www.sqlservercentral.com/Forums/Topic944084-392-1.aspx#bm944497
my point is that even though local system can access...
Lowell
June 29, 2010 at 11:30 am
the issue is the dynamic SQL; if that is used in a proc, the calling user needs to have the rights to the underlying object for whatever the proc is...
Lowell
June 29, 2010 at 11:16 am
details? the account cmdexec/xp_cmdShell runs under is local system , you said, right? that account might not have rights to a local folder(ie C:\Documents and settings\SomeUser) or to a \\UNC...
Lowell
June 29, 2010 at 11:10 am
could your application be raising a pop-up/error message window? so when it is run from cmdexec, maybe with a misspelled parameter or something, it seems to be running forever because...
Lowell
June 29, 2010 at 11:00 am
SYSTEM stored procedures? like sp_who? i think that is inherited with CONNECT permissions, but i'm not sure what you are refering to.
can you script out the user you created and...
Lowell
June 29, 2010 at 8:15 am
hmm...rereading your issue, you said it is"SQL query analyser it runs continuously, seemingly without end"...
could your application be raising a pop-up/error message window? so when it is run from QA,...
Lowell
June 29, 2010 at 5:20 am
wouldn't log shipping be an option? a zip of the log file of changes would be much smaller than the 9 gig backup, zipped or not, and your bandwidth would...
Lowell
June 28, 2010 at 12:43 pm
dunne do you mean you want to show the existing DISTINCT combinations of the three values, or do you mean that you want to force three distinct lists, but put...
Lowell
June 28, 2010 at 12:01 pm
Chris Hazeldene (6/28/2010)
I've logged onto the server (Windows Server 2008 - MSSQL 2008) as the Admin in an attempt to rule out any permissions issue.
xp_cmdShell does not use your...
Lowell
June 28, 2010 at 10:54 am
here's a simple and fast example: just add the insert into:
--ten years before and after todays date:
with TallyCalendar as (
...
Lowell
June 28, 2010 at 10:46 am
Remember one of the design annoyances in Enterprise Manager was that when it starts, it iterates thru and opens every database....so if your server has a lot of databases, it...
Lowell
June 28, 2010 at 6:32 am
Viewing 15 posts - 9,151 through 9,165 (of 13,460 total)