Forum Replies Created

Viewing 15 posts - 9,151 through 9,165 (of 13,461 total)

  • RE: Is there a limit on the number of databases a maintenance plan can back up?!

    the only thing I can think of off hand is whether it was possible the server ran out of disk space after backing up the 30th database....when it moved to...

  • RE: SQL Dependency or Change data capture

    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...

  • RE: Non-logged table ?

    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,...

  • RE: CMDexec job hanging in SQL server

    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....

  • RE: Query LDAP server from SQL server

    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...

  • RE: CMDexec job hanging in SQL server

    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...

  • RE: Questions about permission via Stored Procedures

    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...

  • RE: CMDexec job hanging in SQL server

    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...

  • RE: CMDexec job hanging in SQL server

    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...

  • RE: user creation

    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...

  • RE: xp_cmdshell issue

    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,...

  • RE: Is there a better way?

    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...

  • RE: 3 distinct columns

    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...

  • RE: xp_cmdshell issue

    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...

  • RE: Filling a LIst table with Dates

    here's a simple and fast example: just add the insert into:

    --ten years before and after todays date:

    with TallyCalendar as (

    ...

Viewing 15 posts - 9,151 through 9,165 (of 13,461 total)