Forum Replies Created

Viewing 15 posts - 751 through 765 (of 824 total)

  • RE: Multiple files in primary file group

    SQL Server can actually use multiple asynchronous I/O requests against a single file too.  Now there may be some performance benefit in splitting the files across multiple I/O channels or...

  • RE: Parallel CREATE INDEX

    Yes you can run multiple CREATE INDEX statements "at the same time" on Standard Edition, however the mention of parallel index creation refers to a single CREATE statement being able...

  • RE: Parallel CREATE INDEX

    From BOL "CREATE INDEX"

    "On multiprocessor computers on SQL Server Enterprise and Developer Editions, CREATE INDEX automatically uses more processors to perform the scan and sort, in the same way as...

  • RE: Parallel CREATE INDEX

    This feature refers to the ability of SQL Server to employ more than one processor in the creation of an index, rather than referring to the number of indexes that...

  • RE: Multiple files in primary file group

    I missed the bit about them being in the Primary group.  Sorry.  About the only thing you can do at this point is to create another database with the files/file...

  • RE: Multiple files in primary file group

    Use the DBCC SHRINKFILE ('filename', EMPTYFILE) command to remove all data from the file and then use the ALTER DATABASE command to remove the file.

  • RE: Moving System Databases

    You will need to edit the registry.  HKEY_Local_Machine\SOFTWARE\Microsoft\MSSQLServer\Parameters

    Change the SQLArg0 to reflect the new path and file name of the master data file.

    Change the SQLArg1 to reflect the new path...

  • RE: DTS Package monitoring.

    If you are getting a red x for the second step, the step was attempted and errrored out.  Did you get any kind of error message when you double click...

  • RE: Licensing

    If you are talking about SQL Server 2000 the CAL's are not sold on the basis of concurrent users.  They are for either named users or named devices, so you need...

  • RE: Connectivity to SQL Server via VPN terribly slow...

    You might get some improvement if you bump up your network packet size.  This will probably only net a pretty incremental gain on large data transfers, but it could also hurt smaller...

  • RE: View Usage Question

    I'm afraid the only place to get that information is from the views themselves.  The sysdepends and the INFOMATION_SCHEMA views are limited to a single database's objects.

  • RE: DTS Package monitoring.

    I'm not sure what you mean by Linked Steps.  You do need to redo any workflow definitions that were in place before you rename the steps, but I've not had...

  • RE: DTS Package monitoring.

    Unfortunately the DTS packages, including all the steps are contained in a binary image in sysdtspackages so there is no way of easily retrieving the step descriptions.  However, you can change the step...

  • RE: Problem with transaction log backup

    That sounds very strange, the only thing I can think of that might cause that is the job definition.  Open up the job that runs the transaction log backups and...

  • RE: Copying databases from one server to another.

    By file format I assume you are asking about the file naming convention.  By convention, database backup files are named using the ".bak" extension and transaction log backups use ".trn",...

Viewing 15 posts - 751 through 765 (of 824 total)