Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sreenath205

    Check sum failed error with weblogic AD

    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...
  2. sreenath205

    How to make it into one query?

    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...
  3. sreenath205

    How to Optimize code?

    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...
  4. sreenath205

    Best practice question

    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...
  5. sreenath205

    How to check whether Left mouse button is pressed

    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...
  6. sreenath205

    How to check whether Left mouse button is pressed

    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...
  7. sreenath205

    How to check whether Left mouse button is pressed

    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...
  8. sreenath205

    How to stop flickering effect

    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...
  9. sreenath205

    How does java give a correct answer??

    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...
  10. sreenath205

    Why is the output like this???

    ================================= #include<stdio.h> { void main() { int i,j; i=5; j=++i * ++i; printf(&quot;%d&quot;,j); } } Out put:49 ================================= The output should be 42 why is it 49 Thanks in advance
  11. sreenath205

    .class file to .exe????

    Diancecht thanks for the reply,but how to go about it can you provide some code. thanks and regards Sreenath m
  12. sreenath205

    .class file to .exe????

    its a client requirement
  13. sreenath205

    .class file to .exe????

    Hi all Is it possible to convert a .class file to .exe file? Thanks
  14. sreenath205

    Why does this code behave like THIS??

    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...
  15. sreenath205

    How to get the last INSERTED record

    Sorry for creating confusion.Its a simple table with a primary key.I just need a query.
  16. sreenath205

    How to get the last INSERTED record

    How to obtain the last inserted record.
  17. sreenath205

    How to get maximum and second maximum in single query

    How to get maximum and second maximum using a single query

Part and Inventory Search

Back
Top