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 Chriss Miller 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: *

  • Users: karephul
  • Content: Threads
  • Order by date
  1. karephul

    DB2 Dirty Read

    We have an outbound process which uses MDB (Message Driven Bean). Each MDB after completing updates the table UPDATE PROCESS_RUN SET COMPLETED = COMPLETED + 1 WHERE PROCESS_RUN_ID = ? Logically, if there are 10 threads (MDB's) trying to update at the same time, DB2 should not allow dirty...
  2. karephul

    static variable in method !

    I am trying to make an application for MOD1253 coldfire (microprocessor)using netburner dev c++ 1.2 IDE for my development. I need to make the application without using RTOS below is the code which is giving me weired error. void method(){ My_writechar(0,c); static int pinn = 4...
  3. karephul

    Configuration Tomcat 5 + Apache 2

    Dear Friends, I have installed -> OS : Ubuntu 6.10 Web Server: Apache 2 Web Container : Tomcat 5 on my system. the default examples that comes with Tomcat (servlet-examples and JSP examples work fine) but I am unable to make my servlet work. What could possibly be the problem, ?? I know its...
  4. karephul

    Query

    I have a relation in which I am maintaing all the registered users and have a column date which shows the joining date. How can I query the table like list all the users registered in a specific month ?
  5. karephul

    Linked Server

    Hello Friends, I have tried a lot but I am unable to connect two SQL Servers 05 using Linked Server feature. both machines are in the Lab and are connected via high speed Lan, both are on the same network. NTWK/mind, and NTWK/bliss both machines have SQL Server 05 installed and running Do...
  6. karephul

    Justify !!

    In microsoft word, when you write something say a paragraph by default its is aligned left, you want it to be JUSTIFY .. so that it looks neet !! what algorithm they might have used and what data structure Microsoft word would have maintained while you are writing !!! Google Interview Question !!!
  7. karephul

    jk_mod configuration

    pardeep@pardeep-laptop:/$ cat /etc/apache2/mods-enabled/jk.load LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so JkWorkersFile /etc/apache2/workers.properties JkLogFile /var/log/apache2/mod_jk.log JkLogLevel debug JkLogStampFormat...
  8. karephul

    mbox file in home directory

    I am using solaris and using thunderbird, Mozilla (sometime) to check my e-mails, by default my e-mails are supposed append to /var/mail/myfile and this file should be read by thunderbird or mozilla what ever. what happens is, mbox is being created automatically in my account, and I am no...
  9. karephul

    cloning object

    How can I clone a winform ??
  10. karephul

    Linked Server + Oracle 10XE

    Hi, I am trying to configure Linked Server with Oracle 10gXE. I can not find any tutorials or help when I googled it. I was sucessfull in finding Linked Server to connect to Access data base and Excel files but not Oracle 10g XE. Any pointer ???
  11. karephul

    Login Trigger

    I want to create a trigger or a Stored procedure which can display the tuples of a perticular table as soon as the administrator "sa" login to sql server 2005. --> I made an Audit table, but instead of "sa" checking the table explicitly I want it to be displayed the first thing when he logs in...
  12. karephul

    Watermarking the data

    Have anyone heard about watermarking ?? According to it, we can change the least significant bit in some column so that in future we can claim this is our data, something along this lines. Can anyone help me to practically do this. I need to watermark some data urgently.
  13. karephul

    Roles ans Users !!

    Database is ARTICLES I made this role using user "sa" CREATE ROLE sysuser; GRANT insert, update, delete, select ON PUBLICARTICLES TO sysuser; GRANT CREATE TABLE TO sysuser with GRANT OPTION; " Then I created a user in the same login" CREATE LOGIN artuser WITH PASSWORD = 'artuser53'; USE...
  14. karephul

    Real Problem !!

    I never thoght of it before, but lets see .. when a person login on any login page what happens ? 1. database is already working and there is a table called users(user, password (encrypted)), we compare username and password and give user the access. --> Problem: what If I have to define...
  15. karephul

    Convert exel file to XML

    Hi, Sorry for not being very active member .. How can we convert exel file to xml document ?? 1. Use event model and use default handler (implement it) in java .. the problem is, what property should I use of exel by which I can retrieve the information .. --> if you have any differnt...

Part and Inventory Search

Back
Top