Posts

Showing posts from September, 2024

DB2: explain plan

 $ db2 set current explain mode explain DB20000I  The SQL command completed successfully. [tst4ins4@db2tst602  ~] $ mv expquery.txt expquery.sql [tst4ins4@db2tst602  ~] $ db2 -tvf expquery.sql select users_id FROM wcs.users WHERE setccurr = 'CAD' AND registertype = 'G' AND users_id > 0 AND users_id < 905000000 SQL0217W  The statement was not executed as only Explain information requests are being processed.  SQLSTATE=01604 [tst4ins4@db2tst602  ~] $  db2 set current explain mode no DB20000I  The SQL command completed successfully. [tst4ins4@db2tst602  ~] $ db2exfmt -d wctst10 -1 -o expquery.EXFMT DB2 Universal Database Version 11.5, 5622-044 (c) Copyright IBM Corp. 1991, 2019 Licensed Material - Program Property of IBM IBM DATABASE 2 Explain Table Format Tool Connecting to the Database. Connect to Database Successful. Using SYSTOOLS schema for Explain tables. Output is in expquery.EXFMT. Executing Connect Reset -- Connect Reset was ...

Postgres: Alter table to new owner

  An object can be assigned to a new owner with an   ALTER   command of the appropriate kind for the object, for example ALTER TABLE table_name OWNER TO new_owner ;

Postgres: rename a table

 ALTER TABLE seadmin.databasechangelog  RENAME TO databasechangelog_old; logged in as pgcfadmin