Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 7 of 7 total
Thread EDBManager: Verify an Repair all tables
Fri, Mar 15 2019 9:29 AMPermanent Link

Yusuf Zorlu

MicrotronX - Speditionssoftware vom Profi

What about having a functionality in edbmanager for verify
all tables and do a repair only in those where problems found.

At the moment i have to right click to each table to do this.

Yusuf Zorlu
MicrotronX
Fri, Mar 15 2019 10:32 AMPermanent Link

Adam Brett

Orixa Systems

Yusuf,

I agree that this functionality would be useful, I have rolled my own. It doesn't do exactly what you say, but it is close, it is simple and can be extended:

CREATE PROCEDURE "RepairAllTables" ()
BEGIN
  DECLARE Crsr Cursor FOR Stmt;
  DECLARE TableName VARCHAR(120);

PREPARE Stmt FROM
' SELECT
    Name
  FROM Information."Tables" ';
OPEN Crsr;
FETCH FIRST FROM Crsr ('Name') INTO TableName;
WHILE NOT EOF(Crsr) DO
  IF NOT (TableName IS NULL) OR NOT (TableName='') THEN
     --iterate the file-list and copy / rename the tables.
     EXECUTE IMMEDIATE
       ' REPAIR TABLE "' + TableName + '" ';
     EXECUTE IMMEDIATE
       ' OPTIMIZE TABLE "' + TableName + '" ';
     END IF;
  FETCH NEXT FROM Crsr ('Name') INTO TableName;
  END WHILE;
CLOSE Crsr;

END
Fri, Mar 15 2019 11:45 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Adam


>   DECLARE TableName VARCHAR(120);

Don't you get fed up of typing table names that long?

Roy Lambert

ps thanks for the procedure - trying it right now.
Fri, Mar 15 2019 12:07 PMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Adam


Suggestion for your procedure - delete the .old files if repair / optimise are successful

Roy Lambert
Sat, Mar 16 2019 3:04 AMPermanent Link

Yusuf Zorlu

MicrotronX - Speditionssoftware vom Profi

Thanks Adam, will try your code

Yusuf Zorlu
MicrotronX
Wed, Mar 20 2019 3:27 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Yusuf,

Here's a more complete version (no offense, Adam) that I use specifically for verification of entire databases:

SCRIPT
BEGIN
  DECLARE CatalogCursor SENSITIVE CURSOR FOR CatalogStatement;
  DECLARE TableName VARCHAR DEFAULT '';
  DECLARE CurrentTable INTEGER DEFAULT 1;
  DECLARE VerifyStmt STATEMENT;
  
  PREPARE CatalogStatement FROM 'SELECT * FROM Information.Tables';
  OPEN CatalogCursor;

  SET PROGRESS TO 0;
  SET LOG MESSAGE TO '*** Verification of database '+CURRENT_DATABASE()+
                     ' started on '+CAST(CURRENT_TIMESTAMP() AS VARCHAR);

  FETCH FIRST FROM CatalogCursor ('Name') INTO TableName;

  WHILE NOT EOF(CatalogCursor) DO

     SET STATUS MESSAGE TO 'Verifying table '+TableName;

     PREPARE VerifyStmt FROM 'VERIFY TABLE '+QUOTEDSTR(TableName,'"');
     EXECUTE VerifyStmt;
     
     IF STMTRESULT(VerifyStmt) THEN
        SET LOG MESSAGE TO 'Error while verifying '+TableName;
     END IF;

     FETCH NEXT FROM CatalogCursor ('Name') INTO TableName;

     SET PROGRESS TO TRUNC((CurrentTable/ROWCOUNT(CatalogCursor))*100);

     SET CurrentTable=CurrentTable+1;

  END WHILE;

  SET LOG MESSAGE TO '*** Verification of database '+CURRENT_DATABASE()+
                     ' completed on '+CAST(CURRENT_TIMESTAMP() AS VARCHAR);

END

Tim Young
Elevate Software
www.elevatesoft.com
Fri, Mar 22 2019 1:10 PMPermanent Link

Yusuf Zorlu

MicrotronX - Speditionssoftware vom Profi

Thank you Tim.

Yusuf Zorlu
MicrotronX
Image