Forum Replies Created

Viewing 15 posts - 556 through 570 (of 620 total)

  • RE: Sql server replication

    What you can do is set up a job to back the t-log up frequently and then have a job on the other server to restore the log to a...

  • RE: Clustering

    Not sure what you are trying to achieve here. Clustering is essentially for fault tolerance NOT performance (load balancing), so active/active is not going to share your work load.

    With regard...

  • RE: Linked Server

    NicDX (10/28/2008)


    verified that you are authenticating using the correct username and password?

    You must ensure that the username you are connecting with ie service account on one server has sufficient rights...

  • RE: Maintenance plan jobs failing on SQL 2000.

    Verify that the user/service/account which is running the job/agent has enough rights to delete files from the location. Modify does not allow delete. So the account must have full access.

  • RE: Looking Solution - Log file is not clearing data.

    What is the point of having a point in time policy if the log is backed up once daily before the database. That would only be helpful if the database...

  • RE: Activity monitor for non sys admins?

    If you create a user with the server role 'process_admin', this user will be able to use the activity monitor. HOWEVER...

    It will also be able to kill of processe.

    Hope this...

  • RE: CREATE LOGIN script

    Hi there and welcome to SSC. Didnt really understand your request but assuming you talking about how to script new windows logins in SQL 2005, please see below:

    USE [master]

    CREATE LOGIN...

  • RE: Looking Solution - Log file is not clearing data.

    Or, if you have done a full db backup and want to just squish your t-log, ensure db backup and set recovery mode to 'simple'.

    Manually shrink the t-log (should...

  • RE: SQL 2005 Maintenance plans - Job Schedules

    Correct. There is no need to over complicate the plan (as long as its not to complex ie TSQL and other bespoke tasks).

    I keep most of my plans to one...

  • RE: Cluster

    πŸ™‚ Thanks πŸ™‚

  • RE: SQL 2005 Maintenance plans - Job Schedules

    Hi there,

    Just re-read your original question and realised my response ignored your question.

    Rather then scheduling the different steps/parts to run at different time, use the progression/inheritance lines.

    In that way...

  • RE: Cluster

    E'oh πŸ™

    Just seen everyones response, that'll teach me for not hitting F5.

    Sorry guys, didn't mean to go repeating everyone else's point.

    Let me know what you decide on Jackal as we...

  • RE: Cluster

    So weird... I was looking into this on Monday and since then there have been several posts to the same subject.

    Does see strange the ways it’s labelled. You would assume...

  • RE: SQL 2005 Maintenance plans - Job Schedules

    Steve Hindle (10/16/2008)


    I am currently using Maintenace Plans to schedule jobs for User / System databases. Is it recommended to run each step at completely different times so there is...

  • RE: Can I script to stop windows/SQL Services?

    magennis.weate (10/13/2008)


    you could try using xp_cmdshell (if it is enabled)

    That certainly works for me. xp_cmdshell is useful for passing commands to the OS but a word of warning, it...

Viewing 15 posts - 556 through 570 (of 620 total)