MSSQL Backup with progress: Difference between revisions

m
add syntax highlighting
(Created page with "This is an example procedure to make a backup of a SQL server database. It works synchronous and will return intermediate result messages ("10% completed") Procedure TestESQL...")
 
m (add syntax highlighting)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
It works synchronous and will return intermediate result messages ("10% completed")
It works synchronous and will return intermediate result messages ("10% completed")


<source lang="dataflex">
   Procedure TestESQLBackup     
   Procedure TestESQLBackup     
       String sConnectString
       String sConnectString
Line 59: Line 60:
        
        
   End_Procedure
   End_Procedure
</source>


Notes:
Notes:
Line 73: Line 75:


taken from: https://support.dataaccess.com/Forums/showthread.php?62564-How-to-test-if-long-running-SQL-statement-is-finished&p=332822#post332822
taken from: https://support.dataaccess.com/Forums/showthread.php?62564-How-to-test-if-long-running-SQL-statement-is-finished&p=332822#post332822
[[Category: Database Connectivity]][[Category: SQL]]