Forum Replies Created

Viewing 15 posts - 271 through 285 (of 335 total)

  • RE: Active/Passive Cluster - Can the passive node be safely ustilised?

    The answer ..... it depends

    You can install an instance on the passive cluster, but as long as it's passive, it can't see the data from the active cluster. So you'll...

    Wilfred
    The best things in life are the simple things

  • RE: Multiple Transaction Log Files

    AFAIK, It doesn't make sense to have multiple transaction logfiles (and this is what I noticed in a log transaction)

    Unlike the multifile TempDB advantage, this seems not the case for...

    Wilfred
    The best things in life are the simple things

  • RE: Shrinking almost empty datafile not possible

    SOLUTION

    It's seems the only way to resolve this issue, was to restart SQL. I created a shrinkjob, which ran after a restart and that solved this issue.

    Wilfred
    The best things in life are the simple things

  • RE: The time stamp counter of CPU on scheduler id 5.....

    There are several items on the internet about this error. It's a timing issue, mostly caused by power-saving settings in your server.

    I know there's a hotfix fot this, which...

    Wilfred
    The best things in life are the simple things

  • RE: dbcc msforeachDB

    The dynamic part in sp_msforeachdb and ms_foreachtable is not a variable, but a questionmark. In the actual statement, MSSQL will replace the questionmark in your code by the databasename

    Wilfred
    The best things in life are the simple things

  • RE: setup alerts with severity

    hi,

    You can define alerts for a severity or for an error number.

    If you define an alert for severity 23, all errors with that severity will trigger the alert. If you...

    Wilfred
    The best things in life are the simple things

  • RE: Migration from Oracle 10g to SQl Server 2005

    WOW :w00t: , that's a big opportunity!

    To my opinion, I don't think a forum is a good location for such a big migration. Most of the items you describe are...

    Wilfred
    The best things in life are the simple things

  • RE: select ..insert

    You can also use this method, which creates the table

    select *

    into {new tablename}

    from {old tablename}

    Wilfred
    The best things in life are the simple things

  • RE: Database Growth Settings

    found this link: http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=127177

    Wilfred
    The best things in life are the simple things

  • RE: Deleting more than one row?!

    Could you post the table definition (and function)?

    Is there a computed column in this table?

    Wilfred
    The best things in life are the simple things

  • RE: How to find out when a db was last updated

    You mean, not updated by users?

    If that's the case, check if there are tables in your database with columnnames like 'modified' (or variants) and select the max() value from this...

    Wilfred
    The best things in life are the simple things

  • RE: Database growth after optimizations

    Was the behaviour of spreading a rebuilded index over multiple files also working in SQL 2000?

    Wilfred
    The best things in life are the simple things

  • RE: Huge CPU usage problem because of SQL server

    We had the same issue with our previous production server. If your application is not causing this issue, try adding more memory.

    Do you also have a lot of blocking locks?...

    Wilfred
    The best things in life are the simple things

  • RE: Database growth after optimizations

    If you rebuild your indexes, and don't have the option SORT_IN_TEMPDB, SQL will build the new index in the same filegroup of the original index in these steps:

    1) say you...

    Wilfred
    The best things in life are the simple things

  • RE: Database with damaged tables / indexes ?

    Sorry, my german is not that good (and I'm lazy to seach for the English translation 😛 )

    First: If you have a database with DBCC reported problems, make a backup...

    Wilfred
    The best things in life are the simple things

Viewing 15 posts - 271 through 285 (of 335 total)