Deleted MySql root user accidently? Recreate root account

Deleted MySql root user accidently? Follow the steps recreate the root user. If mysql service is already running, stop it. Open the command prompt and goto MYSQL_HOME/bin directory. Run following commands > mysqld --skip-grant-tables Then start mysql console > mysql –u=root Then run following commands > GRANT CREATE, DROP ON *.* TO root@localhost IDENTIFIED BY … Continue reading Deleted MySql root user accidently? Recreate root account

OracleXMLQuery: Exception when accessing nested tables

Problem When using OracleXMLQuery to access nested tables, generated XML contains error message oracle.xml.sql.OracleXMLSQLException: getCollectionMetaData:  this method is not supported by 'OracleXMLDataSetGenJdbc' class.  Please use 'OracleXMLDataSetExtJdbc' instead. Description when using OracleXMLQuery to query a view which has a column of user defined type (or Table TYPE column), query executed successfully without any exception. But when … Continue reading OracleXMLQuery: Exception when accessing nested tables

OracleXMLQuery and xml type columns

Problem: OracleXMLQuery escapes xml if the result set has a column which itself contains xml string. Description: I have a database view with a varchar2 type column. the column contains xml string. when I use OracleXMLQuery to select data from the view, OracleXMLQuery escapes the xml string. Solution: I am still looking for the solution, … Continue reading OracleXMLQuery and xml type columns