Forum Replies Created

Viewing 15 posts - 3,316 through 3,330 (of 6,396 total)

  • RE: SQL Server security help

    Not being stupid right to raise your concern but them accounts are created for the service regaurdless of the account which runs them. It does this so that you...

  • RE: Search String in Entire Database

    Bhuvnesh (11/20/2012)


    anthony.green (11/20/2012)


    Bhuvnesh (11/20/2012)


    tonyarp05 61903 (11/20/2012)


    We are developing one tool(Backend : SQL server), that tool should be search the string from entire database.

    But i have some codes,which takes min 30...

  • RE: SQL JOBS Not Functioning

    Any it does not matter as it will execute the procedure in every database you have in sys.databases unless you specifically exlcude it in the exclusions list.

    Uncomment the SELECT @sql...

  • RE: SQL JOBS Not Functioning

    Use my code, the only thing you need to do is to replace the the text schema.procedure with the name of your procedure eg. dbo.thisismyprocedure

    Then remove the spaces between the...

  • RE: Search String in Entire Database

    Bhuvnesh (11/20/2012)


    tonyarp05 61903 (11/20/2012)


    We are developing one tool(Backend : SQL server), that tool should be search the string from entire database.

    But i have some codes,which takes min 30 to 45mins.

    Even...

  • RE: SQL JOBS Not Functioning

    Another way would be to use the following code

    DECLARE @sql NVARCHAR(MAX)

    SELECT @sql =

    REPLACE(

    CAST(

    (

    SELECT 'USE ' + QUOTENAME(name) +';' + CHAR(13) + CHAR(10) +

    'EXECUTE schema.procedure;'+CHAR(13)+CHAR(10)

    FROM sys.databases WHERE name NOT IN...

  • RE: Search String in Entire Database

    No, as I have said what you are wanting to to is very costly in performance as it uses so many resources to look through each table and each column...

  • RE: way to enforce object naming conventions?

    There is no way to enforce a naming convention when your typing code but you can enforce object names where you have to create a table using a prefix for...

  • RE: Connect To Server Dialog showing logins that no longer exist

    Not a problem, happy to help.

  • RE: SQL JOBS Not Functioning

    Does the same procedure exist in all 20 databases and does it need any special paramateres to run?

  • RE: Today's Random Word!

    Stuart Davies (11/20/2012)


    SNAFU

    TARFU

  • RE: Connect To Server Dialog showing logins that no longer exist

    I am guessing the login once existed and you set it to remember the username and password? If so you need to remove the following file and then restart...

  • RE: Transaction log backp - 15 Mins Frequency

    bommaka.nagarjun (11/19/2012)


    Hi ,

    If i set my Txn log backup frequency for 15 mins, what is the worse data loss? Is it for 14 mins 59 Secs? (Assuming disaster happens immediately...

  • RE: Deny Backup

    First off why do your users have access to backup the database? I would strongly recommend reviewing your permissions and working from the ground up on least amount of...

  • RE: How do I get database space used

    IgorMi (11/20/2012)


    sql-lover (11/19/2012)


    Use COLLATION clause in one of the joins .. 😉

    If you have a database with a different collation like me, you'll get that error.

    Except the collation, your code...

Viewing 15 posts - 3,316 through 3,330 (of 6,396 total)