Forum Replies Created

Viewing 15 posts - 391 through 405 (of 501 total)

  • RE: indexes ?

    J (10/9/2008)


    Would you pleae humor my curiosity and give a short description of what kind of an application generates a terabyte of data ?

    SAP

  • RE: Adding files to a filegroup

    SK (10/6/2008)


    Would the best option be to have new LUN's presented (say three 50GB drives), add files there, and then empty and remove the existing file?

    This is the option I...

  • RE: db_SProcReader role generator

    You could also grant VIEW DEFINITION to the dbo schema or any other schemas in the database.

    USE [DATABASENAME]

    GO

    GRANT VIEW DEFINITION ON SCHEMA::[dbo] TO

    GO

  • RE: Database Redundency and Failover

    We use clustering and/or mirroring for SQL 2005 depending on the application. I prefer mirroring since you have 2 copies of the data on separate disks. You have additional cost...

  • RE: Restore database

    rinu philip (7/17/2008)


    Hi,

    I was about to automate a restore process though a job to be scheduled on a daily basis.

    But I have a doubt in that, the job would...

  • RE: After creating DB | Need to set the DB as db_owner

    If you already have the login created and are adding another db, you can use the proc below to make the user a member of db_owner:

    EXEC sp_grantdbaccess ' '

    GO

    EXEC sp_addrolemember...

  • RE: logshipping problems

    I have seen log shipping restore jobs fail when the copy job is still running due to a large log file. A reindex job was the culprit in my case....

  • RE: cannot connect to the distributor

    Could be a possible permission or domain controller issue. Any additional error messages? Anything in the logs?

  • RE: SQL Server 2005 license question

    Just out of curiosity, why would you not want to take advantage of the Enterprise features and install Standard if you have already paid the money?

  • RE: When does SQL Server execute a Checkpoint

    Just to add my 2¢, but a checkpoint will not clear the log of a replicated database until the Log Reader has run. If your database is replicated...

  • RE: re number of users in properties show 5

    Thanks Ken! I guess I read "Number of Users" as "Number of Users Connected to the Database"

  • RE: Regarding database file shrinking

    Shrinking a database is generally a bad idea unless there is a compelling reason to do so. Are you running out of disk space? Why are you looking to shrink...

  • RE: re number of users in properties show 5

    I have never seen this number to be accurate in Management Studio. I would be interested in finding out where this figure is pulled from and how often it's updated....

  • RE: SQL Server 2005 sp2 Disk Space

    New data will be added to the new data file according to Microsoft's proportional fill algorithm. This means SQL Server will write data to the data file with the most...

  • RE: SQL Server 2005 sp2 Disk Space

    You could also have them add another LUN and then you can add a data file to the new LUN. This wouldn't require downtime, like expanding a LUN would.

Viewing 15 posts - 391 through 405 (of 501 total)