select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') from dual; -- Get the formatted system date. select sysdate from dual; -- Get date
SELECT OWNER,COUNT(*) FROM ALL_TABLES GROUP BY OWNER; -- List all user and table number they own; select count(*) from dba_tables t where t.owner='NAME'; -- Count tables of user with the name of "NAME" select count(table_name) from user_tables; -- Count tables of current user;
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.