Forum Replies Created

Viewing 15 posts - 226 through 240 (of 335 total)

  • RE: Very slow response times , before refresh views

    Some things you might consider:

    * Did you run a

    - dbcc updateusage on the migrated database?

    - sp_updatestats on the database

    * Do you have statistics? ("auto...

    Wilfred
    The best things in life are the simple things

  • RE: Checklist for AFTER upgrade from 2000 to 2005

    update statistics by:

    use {databasename}

    exec sp_updatestats

    Wilfred
    The best things in life are the simple things

  • RE: Problem with SQL Server 2005 cluster

    - Have you checked (several) logfiles? (Windows log, SQL log, SAN log)

    - What configuration changes did happen before these problems arised?

    Wilfred
    The best things in life are the simple things

  • RE: What is Storage Area Network (SAN)

    - What is a SAN?

    - What is RAID?

    - Which RAID type is best for data, which for log?

    - What is the advantage of a SAN?

    - What is a NAS? is...

    Wilfred
    The best things in life are the simple things

  • RE: DR and PreProd

    I think you're mixing some concepts. Clustering is actually multiple servers around a database, where one server is active and the other is passive (waiting for the active server to...

    Wilfred
    The best things in life are the simple things

  • RE: Schedule astored proc

    Create a Job.

    Not getting personal, but if you don't know what you're doing or you don't know how to do this, as your boss for a course. MSSQL is not...

    Wilfred
    The best things in life are the simple things

  • RE: How to check db is OLAP or OLTP?

    Technically, you can't see if a database is OLTP or OLAP. Both contain tables, indexes etc.

    But because a OLTP is used different compared to an OLAP database, there should be...

    Wilfred
    The best things in life are the simple things

  • RE: Total restore

    Interesting situation: The whole world is blown up, and you're concerned about restoring a database 😀 (Probably a 1TB Axapta database?)

    Wilfred
    The best things in life are the simple things

  • RE: Help me to remove index fragmentation

    I recommend this script from Lara Rubbelke, which does a smart index reorg/rebuild:

    http://blogs.digineer.com/blogs/larar/archive/2006/08/16/smart-index-defrag-reindex-for-a-consolidated-sql-server-2005-environment.aspx

    Wilfred
    The best things in life are the simple things

  • RE: Recovery Mode

    By truncated, you mean "shrinked"?

    It's a misunderstandind that a transaction log will stay small; the size of the transaction log depends on your transaction. If you update a large table...

    Wilfred
    The best things in life are the simple things

  • RE: DB File Extension

    aaaargh! .ldf is not a databasefile extension, but a logfile extension. :crazy:

    So i disagree with the suggested "correct" answer

    Wilfred
    The best things in life are the simple things

  • RE: t-sql help lpease

    I can't test your script, but what is exactly the problem? Assuming this script works well, you just want the output to a file?

    If you're running this script in a...

    Wilfred
    The best things in life are the simple things

  • RE: Missing Data Files

    I don't think that just removing a datafile entry in master will fix this problem. If your data is spreaded over the 5 datafiles, you're missing 20% of your data...

    Wilfred
    The best things in life are the simple things

  • RE: backup database problem

    We use XMLA to backup the cubes

    Wilfred
    The best things in life are the simple things

  • RE: Script drop all indexes for all tables

    try this script. Combine it with sp_msforeachtable to disable or enable indexes, depending on @switch

    Note: this stored procedure will only disable nonclustered indexes or indexes which are added for performance...

    Wilfred
    The best things in life are the simple things

Viewing 15 posts - 226 through 240 (of 335 total)