Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 2,496 total)

  • RE: Sql 2005 backup restore/index rebuild

    If you access your table via a stored procedure, the access plan will be created the first time the SP is run after SQL startup.

    It is possible that...

  • RE: installing SQL Server 2005

    The system databases are created on the disk where you put the SQL program folders.

    Best practice is to leave master, mssqlsystemresource and model where they are installed.

    You should...

  • RE: Database autgrows several hundreds of times when not needed

    Every database needs some free space. As a minimum, you will need enough free space to hold a copy of your largest table plus its indexes, so that you...

  • RE: Migrating SQL Server 2005 Agent Jobs

    SQL Server FineBuild has scripts that help you export and import jobs. Feel free to raid the code for whatever you want.

    There is a problem area moving jobs that...

  • RE: restore page when recovery mode is simple

    Steve is tright. you absolutely MUST run DBCC CHECKDB, and make sure you use the ALL_ERRORMSGS option and do NOT use the REPAIR_ALLOW_DATA_LOSS.

    Sometimes Windows may report errors with SQL...

  • RE: Not Installing BOL

    It is generally considered to be bad practice to log on to a production SQL Server box in order to do management tasks.

    The use of Windows desktop takes...

  • RE: EXEC master.dbo.xp_cmdshell 'SET'

    If you aer a sysadmin and you run xp_cmdshell, it will run using the credentials of the SQL Server service account.

    If SQL is run using LOCAL SYSTEM authority,...

  • RE: GUID or Int is the best for primary key columns?

    You really need to do some workload simulation, so you have ral figures for your installation.

    Your tests will show how many I-O streams can be supported by your disk subsystem....

  • RE: GUID or Int is the best for primary key columns?

    The advice about puting each filegroup on its own RAID set has a good intention at its heart, but is not really correct.

    SQL Server can initiate multiple I-O streams against...

  • RE: GUID or Int is the best for primary key columns?

    I was thinking of SQL Server table partitioning, not Windows drive partitions...

    There is nothing to stop you putting all your file groups on a single drive. However, you should...

  • RE: GUID or Int is the best for primary key columns?

    IMHO do not worry about separating partitions to different disks. Using partitions has a very significant advantage over using a status column in the clustered index...

    The partitioning...

  • RE: Finding Passwords

    My understanding is that the 'Administrator' in question is a member of the Windows local Administrators group, not a SQL Sysadmin. This means the list of people who could...

  • RE: Moving Model database error?

    This thread shows the problems that can happen when you want to do something that is totally unnecessary.

    There are no performance or data integrity advantages to moving model database. ...

  • RE: !! Online SQL Server ??

    If you are going to finance learning SQL Server yourself, ten I recomend you get a Technet subscription. This cosst about GBP 250 in year 1, with a GBP...

  • RE: C2 audit log trimming

    A bit off-topic, but I am interested in knowing what benefits you see in C2 logging, and who in your organisation is requesting that you do this.

    The DOD TCSEC standard...

Viewing 15 posts - 1,201 through 1,215 (of 2,496 total)