Forum Replies Created

Viewing 15 posts - 916 through 930 (of 2,487 total)

  • RE: Need help on SQL Mail Setup

    Also, check point 6 of the following article for permissions,

    http://www.microsoft.com/sql/techinfo/administration/2000/security/securingsqlserver.mspx

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Need help on SQL Mail Setup

    Also should add,

    Q: Is XPSMTP supported on a cluster?

    A: Yes, you only need to make sure that the binary (xpsmtpXX.dll) is available in the BINN directory of every...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Need help on SQL Mail Setup

    Instead of setting up Outlook or Notes client, install xp_smtp_sendmail from http://www.sqldev.net. This DLL just needs a simple smtp mailserver address to handle emailing from SQL Server.

    A big benefit is...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Flat Files

    Steve

    For your basic output needs, I'd take a look a creating a stored procedure that provides the output in the correct layout. Then just use the OSQL command line tool...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Query Performance

    The cost value percentage will just highlight which part of the query takes the most time/resources. You really need to look at the number of reads (logical and physical) being...

    --------------------
    Colt 45 - the original point and click interface

  • RE: How to get current CPU/memory usage

    I thought it was just the SQL Server performance counters that were stored in sysperfinfo

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Flat Files

    If the flat files are for data transfer purposes then DTS is your tool. For really, really basic text file output you can use the OSQL command-line utility.

    If a report...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Pinned Tables

    Not sure about a single query to list all pinned tables. Maybe one of the DBCC commands that shows chace usage could help.

    To see if individual tables are pinned you...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Flat Files

    Not particularly familiar with Oracle and SQL Plus. What is the purpose of the flat files that you're creating?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: What is the equivalent of DRI in code?

    That would be GRANT REFERENCES.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: How to get current CPU/memory usage

    Are you talking about getting the live, or historical values?

    Live performance data can be seen in Windows System Monitor in Administrative Tools.

    For historical data, you would need to capture that...

    --------------------
    Colt 45 - the original point and click interface

  • RE: looking for best practices for RS and source safe

    In Visual Studio you can setup different configurations (debug, release, etc...) that point to different servers. You just select the configuration and choose deploy.

    What I've come up with is to...

    --------------------
    Colt 45 - the original point and click interface

  • RE: For those who say cursors are evil

    1.  It isn't a "result set" solution which is the biggest complaint I've seen against cursors.

    That's right, I wasn't presenting it as a "result set" solution, I was presenting it as...

    --------------------
    Colt 45 - the original point and click interface

  • RE: DB Maintenance Plan fails routinely.

    Where are you backing up the file to? If it's a network location then you could be having networking issues. SQL Server is very, very picky about network connectivity.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: For those who say cursors are evil

    Consider this,

    DECLARE @id int
    SELECT TOP 1 @id = id 
    FROM sysobjects 
    WHERE xtype='U'
    ORDER BY id
    PRINT @id
    WHILE @id IS NOT NULL
    BEGIN
        --do stuff
        SET @id =...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 916 through 930 (of 2,487 total)