Hi,
I have the following combination,Weblogic(weblogic 9.2),Jrockit(jrockit-R27.5.0-jdk1.5.0_14).Generate the keytab and while trying to login using sso after starting the server i get the following error
<May 30, 2012 2:43:01 PM BST> <Notice> <Stdout> <000000> <default etypes for...
Hi All
I have a procedure which runs fine,but since the data in table XYZ,ABC runs into millions it becomes too slow..Can any one guide me in optimising the code.I have already created indexes on these columns
CREATE OR REPLACE PROCEDURE test AS
CURSOR c1 IS
SELECT...
Hi All
I have this Procedure which works fine for a smaller dataset.But for larger dataset its going on and on.Please let me know if there can be some optimization done to this code?
The issue is if the first cursor returns less records ie 100 or so it excutres in no time but when the resulkt...
Hi All,
I know the title of the post does not make much sense, I am sorry for that.
The question i have is consider this piece of code
Connection mConnection = null;
mConnection = getConnection(); //This is a private method whic returns a connection object
Now consider this
Connection...
Hi Dan
Sorry for not answering your Question,its for IE only.
Thanks for the input.
But MSDN states that
"This(event.button")property is used with the onmousedown, onmouseup, and onmousemove events. For other events, it defaults to 0 regardless of the state of the mouse buttons."
How to over...
Hi
I think i did not present my problem correctly.What i want is FROM the foo function i need to check whether user is pressing the left button ie consider this scenario my mousepointer is outside the button ,i pressed the left mouse button and draged the pointer over the button now foo event...
Hi
I have a button whose onmouseenter event calls a function say "foo",in foo
i need to check whether the left mouse button is pressed or not?
<html>
<script>
function foo(){
alert("came")
//How to check here whether the Left button is clicked??
}
</script>
<body>
<input type=button...
Hi
My task is that when i do a mouse down on any link in html page and drag it , a copy of the text should move along with the mouse pointer.I have partially achieved this task by using the code below, the code below creates a tool tip i have modified it to suite my needs .The problem is that...
Hi all,
-------------------------------------------------------
class test
{
public static void main(String args[])
{
int i,j;
i=5;
j=++i*++i;
System.out.println(j);
}
}
------------------------------------------------------------
Out put :42
When the same...
=================================
#include<stdio.h>
{
void main()
{
int i,j;
i=5;
j=++i * ++i;
printf("%d",j);
}
}
Out put:49
=================================
The output should be 42 why is it 49
Thanks in advance
class mainerror
{
public static void main(String[] args)
{
for(int i=0; i < args.length; i++)
{
System.out.println(args[i]);
}
}
}
if we execute this programme with command line argument it has to print the same command line argument
eg
c:\>mainerror testing
output...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.