Forum Replies Created

Viewing 8 posts - 16 through 24 (of 24 total)

  • RE: batch file to call a procedure from sql

    Sunil,

      I would agree with Ankush if your SQL Server is on the same machine that you want the batch file to run.  SQL Services will likely not be started...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: DBS Files

    I've never worked with PRODAS, but you might look at the DBMS/Copy tool here.  It supports PRODAS files and looks like it could export to something supported by SQL.

    http://www.dataflux.com/dbms/


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: WARNING: ... Not a BUF latch.

    You can take a look at this article:

    http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3BQ310834

    and this one has info on deciphering waittypes:

    http://support.microsoft.com/default.aspx?scid=kb;EN-US;822101


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: Sending an SMTP email when row(s) change(s)

    It would be simplest to send the mail from within the same procedure that updates the password, however, that means notifications wouldn't be sent if the table were updated directly.

    A...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: Stored procedure at specified time

    My mistake, I thought he was asking for a way to do it WITHOUT coding.

    I agree that your solution is perfectly sound and I...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: SQL Server 2K Backup History

    We use a view, similar to this one:

    CREATE VIEW MostRecentBackup

    AS

    select   a.database_name as 'DatabaseName', max(backup_finish_date) as 'BackupDate'

    from     msdb..backupset a

    where    a.type in ('I','D')

    and exists

      (select *

       from   master..sysdatabases b

       where  a.database_name...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: Stored procedure at specified time

    I'm not quite sure why you think creating a job means coding.  Unless you really like writing T-SQL, creating a job in Enterprise Manager doesn't require any coding.

    Since you are...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

  • RE: Installing SQL SERVER 6.0 in Windows 2000 Professional

    Hi Suresh,

      SQL Server 6.0 was not supported after NT 3.51.  I know there were some issues with installing anything other than the default sort order on NT 4.0, so...


    Regards,
    Steve

    Meddle not in the affairs of dragons, for you are crunchy and taste good with ketchup.

Viewing 8 posts - 16 through 24 (of 24 total)