132014Aug

ORA-31679: Solved

ORA-31679: Solved ORA-31679: Table data object “Table_Name” has long columns, and longs can not be loaded/unloaded using a network link When ? ORA-31679 error occurs when we try to import the data using impdp over a network link. Why ? When the remote database contains table data object that has long columns, and longs can not…

Read More
62014Aug

ArrayList and LinkedList Difference

ArrayList ArrayList is backed Array datastructure and Alllow Duplicacy,we can insert multiple null value in it.Array initial capacity is 16. ArrayList make a contiguous memory allocation,for contiguous memory allocation arraylist always firstly create a space then insert a value in it.So arrayList  require two step for insertion first create space then insert value. If we insert any value in ArrayList it take more…

Read More
52014Aug

Half Girlfriend

Chetan Bhagat again bang with his new novel “Half Girlfriend” The story is all about a Bihari Boy who is not good in english and a Girl who is very good in english. So with this beautiful love story this novel tries to cheer you up for how to your dreams. Buy this book at Flipkart…

Read More
262014Jul

Sometimes We Need A Kick To Slog

I use to think brain is most important organ of my body but wait a minute who is telling me this, again my brain so don’t always follow him. Here it is described by well know Author Chetan Bhagat Sometimes, I look back and wonder, how on earth did all this happen? I remember my days…

Read More
232014Jul

Advance CakePHP Interview Questions

Here is the list of advance Cakephp interview questions that every Cakephp developer should know before going for interview. And here I am just giving overview of answers so for complete answers you should go through respective documentation. Question – How many different type of Cache CakePHP Supports? FileCache ApcCache Wincache XcacheEngine MemcacheEngine RedisEngine FileEngine is always…

Read More
222014Jul

Difference between init() & init(ServletConfig)

Question-What’s the difference between init() & init(ServletConfig) and Which is better ? Answer- Before start we have to understand the servlet flow. For example you have servlet LoginServlet which extends HttpServlet public class LoginServlet extends HttpServlet{ } And your HttpServlet internally extends GenericServlet. public abstract class GenericServlet implements Servlet, ServletConfig, Serializable { public GenericServlet() {…

Read More
172014Jul

JDBCConnectionException while deploying Ear Sterling OMS

ErrorCode=”com.sterlingcommerce.woodstock.util.frame.jdbc.JDBCConnectionException This is the most common error we get while deploying Sterling Ear in Jboss. So to solve this error go to following location. << Jboss Installation Folder >>/bin/run.bat and open run.bat in text editor. After that find JAVA_OPTS variable and replace that variable and its value with this line. set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dvendor=shell -DvendorFile=<<sterling…

Read More