Forum Replies Created

Viewing 15 posts - 4,906 through 4,920 (of 6,104 total)

  • RE: Active Directory and SQL Server

    I guess it would be useful if you had publications available in a very large environment and didn't know exactly what server a particular publication was on... but even this...

  • RE: Dynamic SQL

    You won't cause recompilations in the stored procedures if you use sp_executesql. However, as dj_meier indicates, you may get recompiles on the dynamic SQL itself unless it's a parameterized query....

  • RE: MSDTC in active/active sql config?

    MS DTC will need to be configured for cluster support before you install the first SQL Server instance. Therefore it'll be located in the Cluster Group (quorum). After you have...

  • RE: Cache miss

    3-part naming convention:

    Database.owner.object

    Such as Northwind.dbo.Customers

    If you don't specify an owner or a database plus owner, it looks in the current database first for an object owned by the user and...

  • RE: Dynamic SQL

    Look at the articles on Dynamic SQL by Robert Marda on this site:

    http://www.sqlservercentral.com/columnists/rmarda/

    Also take a look at MVP Vyas Kondreddi's article on SQL Server security. He talks a bit about...

  • RE: Two instance Config

    Look at the Memory Manager object for each instance in Performance Monitor (perfmon). The Total Server Memory (KB) counter should tell you how much memory is being used. These numbers...

  • RE: Cache miss

    This should be the same in both SQL Server 7 and 2000. It's because of the way SQL Server looks for stored procedures that start with sp_... first in the...

  • RE: Soundex Function

    SOUNDEX() is relatively simplistic. You may look at Ken Henderson's improved comparison in his book The Guru's Guide to Transact SQL. Also, Full Text Indexing does have some ability to...

  • RE: Mapped Drive backups

    Is the backup to a local drive then copy to a remote drive not an option? This would ensure a failure on the network doesn't prevent your backup from running.

    K....

  • RE: Slow SQL Server access from DMZ

    Basically, it looks like the firewall is right... you need to open port 1433 into your internal network. The question is, do you need to allow all network traffic back...

  • RE: Profiler data captured

    It shows up in the trace itself but I'll be honest in saying that it requires a LOT of activity. The case I can cite was a trace that dumped...

  • RE: CPU, Buffers, and Cache oh my!

    The cache hit ratio could also be low due to stored procedure recompiles. Case in point: a SQL Server with 2.5 GB of memory only using about 1.4 GB with...

  • RE: Profiler data captured

    If you are going to save trace results, saving to a trace file is considered fastest. At some later point you can take a trace file and convert to a...

  • RE: Clustered environment for SQL 2000

    Also check out Brian Knight's step-by-step article:

    http://www.sqlservercentral.com/columnists/bknight/stepbystepclustering.asp

    K. Brian Kelley

    http://www.truthsolutions.com/

    Author: Start to Finish Guide to SQL Server Performance Monitoring

    http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1

  • RE: Force Password Changes

    How about simply modifying sp_password? You could insert logic to keep track of when a login's password was changed in a separate table. Then have a job run nightly that...

Viewing 15 posts - 4,906 through 4,920 (of 6,104 total)