Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,155 total)

  • RE: SQL Server unattended install or configuration response file

    You can just run the sql server setup wizard ( select all your configuration options ) till the last screen and instead on hitting install, just cancel it.

    But note the...

  • RE: Index physical stats dmv

    Check this one by Richard Doering ..

    SELECT

    SCHEMA_NAME(o.schema_id) AS SchemaName ...

  • RE: Rebuilding a server

    Yeah, it should not be an issue if you follow the steps correctly. Moreover, it's a dev server and you get good experience on restoring system databases which will be...

  • RE: DB loss connectivity

    SQL Server Backups doesn't directly cause locking\blocking on user objects. But they do put a heavy overload on the I/O system so that it may appear as blocking. However...

  • RE: DB loss connectivity

    May be you can schedule the backups using that Third Party tool at a convenient time so that they don't interfere with your business activity.

    --

    SQLBuddy

  • RE: Linked server login problem

    There is no specific role for Linked Servers. Just you need to manage security at the SQL Server level and you can use DB roles for granting granular permissions.

    --

    SQLBuddy

  • RE: 2008R2 Standard reports - Transaction Log Shipping Status

    What is the build of your SQL Server ? Are you on SP3 ..

    --

    SQLBuddy

  • RE: Linked server login problem

    Logins will be in the AD group and you grant permissions to a role and add the group to that role. Then use " Be made using the login's security...

  • RE: DB loss connectivity

    Yeah, Backups need to be scheduled so that they don't interfere with the business processes. Schedule it during the night or early hours when you don't have users. That way...

  • RE: DB loss connectivity

    Yeah, though abt backups. But again felt that if it was backups then that should have been a recurring daily issue. Not a one time one ..

    That's where SQL...

  • RE: DB loss connectivity

    I don't see any DB related errors from the app log. Also the attachment doesn't show anything close to 1:13 AM.

    Check with your network admin if there was any network...

  • RE: DB loss connectivity

    Check if the DB server got restarted at that point of time .. Also good to check the SQL Server Error Logs for any specififc errors at that point ..

    --

    SQLBuddy

  • RE: DB loss connectivity

    Did you check on the Application server or on the DB server ..

    --

    SQLBuddy

  • RE: DB loss connectivity

    It could be a Network Glitch or a DB issue. Check the Windows Application Log and SQL Server Logs to see if it's a DB issue.

    --

    SQLBuddy

  • RE: stored proc taking time for first run every 30 mins

    For the first time, it takes more time bcs of the compiling. For the subsequent runs, it uses the stored plan in the memory.

    After 1 hr if the same thing...

Viewing 15 posts - 436 through 450 (of 1,155 total)