Forum Replies Created

Viewing 15 posts - 44,941 through 44,955 (of 49,571 total)

  • RE: SHOWCONTIG and Index Fill Factor

    DB_Newbie2007 (8/20/2008)


    Here is the rest of the post, part of the execution plan:

    Any chance you could zip the .showplan file and attach it to your post? It's easier to...

  • RE: SHOWCONTIG and Index Fill Factor

    DB_Newbie2007 (8/20/2008)


    Some information:

    VIEWS are unions of partitioned tables... i.e., VIEW_AllAddresses would be Select * from AllAddresses_Jan08 UNION SELECT * from AllAddresses_Feb08...

    First thing that comes to mind... If there's...

  • RE: What runs CREATE PROCEDURE dbo.sysmail_help_admin_account_sp?

    Actually, nothing's running the create proc.

    When you get the sql text from sys.dm_exec_sql_text and the connection is running a stored procedure, exec_sql_text returns the create statement, rather than the...

  • RE: Confusion about Primary Database

    If you did a database copy, then you should have two databases. What do you use to manage them? Enterprise manager? You should see two entries in there for the...

  • RE: Super SQLServer configuration

    You can't do Raid 10 (striped and mirrored) with only two drives. It requires a minimum of 4. Also Raid 10 doesn't use parity. Raid 5 and a couple of...

  • RE: Confusion about Primary Database

    Each database needs a log, not each file. You can have multiple data files within one database and only one log file.

    What's the output of the following query?

    select DB_NAME(dbid), fileid,...

  • RE: Confusion about Primary Database

    Oh, and log shipping is used to create a warm standby database on a secondary server. It's a high-availability technology, so that if the main server completely fails, there's a...

  • RE: Confusion about Primary Database

    Each database will have one primary data file (.mdf), zero or more secondary data files (.ndf) and one or more log files (.ldf).

    It is not possible to have a database...

  • RE: Re: High CPU Utilization Troubleshooting

    If every time the developer runs his code there's a problem, I'd statrt by looking at that developer's code. If there's nothing wring there, run profiler for a while and...

  • RE: Blocked by -2 SQL Server 2000 with SP4

    The permanent solution is to find the source of the indoubt transactions and fix that application to handle its transactions properly.

    Are you using Java apps?

  • RE: SQL 2005 Developer Meterial Needed

    I'll be my usual blunt self on this topic.

    Using brain dumps is cheating, plain and simple. The same as if you got hold of a test sheet before an exam...

  • RE: AI? Writing Business Algorithms on Dates and Values

    Could you be a bit more specific on what you want?

  • RE: Super SQLServer configuration

    Make sure you set the max memory for each instance. You do not want multiple instances on a 64 bit server competing for memory. It can lead to interesting issues...

  • RE: SHOWCONTIG and Index Fill Factor

    Post the query here if you want advice.

    Be careful of the tuning advisor's suggestions. It frequently suggests far more than is necessary.

  • RE: sysindexes.lockflags

    Sysindexes is only included for backward compatibility, and shouldn't be used in new development.

    Besides that, perhaps it will be easier to query the allow_row_locks and allow_page_locks columns in sys.indexes to...

Viewing 15 posts - 44,941 through 44,955 (of 49,571 total)