Forum Replies Created

Viewing 11 posts - 16 through 27 (of 27 total)

  • RE: Developers' access to dev SQL Server

    In our development environment, we give dbo access to the databases that the developer is working with, but not server(instance)-wide access.


    Thanks,

    Lori

  • RE: Record Locking in sql server 2005

    Additionally, you can create a job to store information about blocked/blocking processes.

    Create a table to hold the results:

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[blockingprocesses]') and OBJECTPROPERTY(id, N'IsUserTable')...


    Thanks,

    Lori

  • RE: Create SS2005 DMVs in SQL Server 2000

    Steve,

    Thanks for your reply - not what I was hoping to hear, but kind of what I was expecting to...


    Thanks,

    Lori

  • RE: Adding new columns to SSIS package

    Thanks for your respnse.  The column mappings look correct, but it's difficult to see the values because the name of the data file is dynamically generated as needed.  I use...


    Thanks,

    Lori

  • RE: How to check how many packages are in the instance of sql server?

    If they're depoyed to msdb rather than filesystem, I don't think that they will show up under integrations services (I may be wrong).  You can query msdb, though:

    select name

    from sysdtspackages90

    That...


    Thanks,

    Lori

  • RE: %Log Full Alert

    In Enterprise Manager, if you go under the Management Section, SQL Server Agent, Alerts.

    In the dialog box:

    Type - "SQL Server performance condition alert"

    Object - "dbname/Databases"

    Counter - "Percent Log Used"

    Alert if counter -...


    Thanks,

    Lori

  • RE: Increasing the Timeout period

    From BOL:

    Right-click a server, and go to Properties

    Click the Connections tab

    Under Remote server connections in the Query time-out (sec,0 = unlimited) box, choose an value between 0 and 2147483647 to...


    Thanks,

    Lori

  • RE: DB Maintenance Plan

    You can do an update statement to the sysdbmaintplans table to set a new value to  max_history_rows.

    UPDATE sysdbmaintplans

    SET max_history_rows = n

    where plan_name = 'your plan name'


    Thanks,

    Lori

  • RE: Moving database files to other drive

    The database being moved needs to be completely offline prior to moving the files. 


    Thanks,

    Lori

  • RE: Distribution db flagged ''''suspect'''', replication broken

    Try sp_removedbreplication 'dbname' where dbname is the name of the published database.  Removing replication is tough when it's broken - good luck.


    Thanks,

    Lori

  • RE: DTS job doesn''''t copy passwords

    You need to use the Transfer Logins Task rather than the Copy SQL Server Objects.  Passwords aren't scripted for security reasons.  You can refer to the article below:

    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q246133


    Thanks,

    Lori

Viewing 11 posts - 16 through 27 (of 27 total)