VijayaTech Team

White screen of death or HTTP error 500 due to Memory limit

Recently, we have got an error called as White screen of death (HTTP error 500), when trying to setup an Woocommerce store. The error was appearing immediately when the Woocommerce plugin is activated. We thought it is an random issue hence,have re-installed WordPress also few times, disabled/enabled and installed/uninstalled Woocommerce so many times but nothing …

White screen of death or HTTP error 500 due to Memory limit Read More »

loadjava: Loading Java Sources/Classes/Jars into oracle Database

Loading the Java Sources/Classes into Database is important thing in Java based application software. Java sources (jar/Classes) can be loaded into database by using few methods, and using loadjava command is one of them. loadjava:This is OS based utility tool by Database. This command will be available in the OS. This can be run by …

loadjava: Loading Java Sources/Classes/Jars into oracle Database Read More »

ORA-12154: TNS: could not resolve the connect identifier specified

WhatDatabase link is an option to connect to a remote database from another database. By using this database link option one can connect to remote database as authorized database user and can perform the operations as in the direct connection. Database link is of two types Public Private HowAdd a entry in tnsnames.ora file to …

ORA-12154: TNS: could not resolve the connect identifier specified Read More »

get tables and their number of rows in Oracle Database Schema

Simplest way is to use the data dictionaries provided by Oracle. And you can depend on the results if the schema is up to date with the statistics. Use the following query to get the table list and their number of rows (records). SELECT table_name, num_rows FROM user_tables; OR SELECT table_name, num_rows FROM all_tables WHERE …

get tables and their number of rows in Oracle Database Schema Read More »

Scroll to Top