Forum Replies Created

Viewing 15 posts - 241 through 255 (of 2,612 total)

  • RE: trancate

    Don't bite my head off Gail, just wanted to make the point that it is logged "differently" without typing out a lot of detail.

    It's a holiday week - need to...

  • RE: Running Sql 2005 and Sql2000

    You may be able to get away with disabling a processor in the server BIOS rather than removing it...

    MS allows for a virtualization layer to allocate resources. If you...

  • RE: Running Sql 2005 and Sql2000

    The answer is no, you cannot use processor affinity to try to avoid the licensing cost. You have to physically remove the processor from the server.

    I am not sure...

  • RE: trancate

    If you are interested in the internals of what is happening that is different than:

    DELETE [TableName]

    I recommend you read the TRUNCATE and DELETE topics in books online.

  • RE: trancate

    TRUNCATE TABLE [TableName]

    This will remove all rows from the table. TRUNCATE is a non-logged operation, so if you are using log shipping or have regular log backups running, it...

  • RE: trancate

    TRUNCATE is a way of removing all data from a table.

    What are you trying to do?

  • RE: trancate

    Perhaps it would be better for you to describe what you are trying to do.

  • RE: trancate

    Do you mean TRUNCATE?

  • RE: Question about joins

    You should use the new join syntax. The old syntax is only really being supported for backwards compatibility and the *= syntax for outer joins is already unsupported.

    As far...

  • RE: Running Sql 2005 and Sql2000

    Again, the only way you can use any additional memory would be to enable AWE. This may help alleviate the problem, but it is pretty likely that the 3rd...

  • RE: SSRS is too slow with SSAS

    Analysis Services will cache data automatically in most cases. If you are having performance issues with just one tool, it is most likely that the tool is generating inefficient...

  • RE: Running Sql 2005 and Sql2000

    Without AWE enabled, adding memory will do nothing.

    My first suggestion would be to move the SQL servers to another machine and make it a 64 bit machine. You are...

  • RE: SSIS package runs fine, except as a scheduled job (AS400 authentication error)

    That checkbox will not work either. MS documented it in books online. Use package configurations or dynamically set it with a variable in the package.

  • RE: Running Sql 2005 and Sql2000

    You did not note if this was a 32bit or 64bit machine.

    Unless your applications are AWE-aware, adding memory is only going to help SQL - and it will only help...

  • RE: Creating a unique Clustered Index on a view with NOLOCK option.

    The answer is that you cannot do this. If you need to index the view, you must remove the hint.

    I would go back and question the use of NOLOCK....

Viewing 15 posts - 241 through 255 (of 2,612 total)