Database independant application [urgent]

Hi,
I need to design an application that should be database
independant, meaning backend could be even MS Access. What are
all the consideration one should take care off ?. Obviously, I
can't have stored procedure, then where these business logic
should reside ?, business logics can be there in middle-tier (eg.
OAS) ?.
Is there any douments available on net ?
If anyone worked these kind of application, please help me.
Thanks,
-Sri
null

Please see these docs.
Ksvcreate: Process(M001) Creation Failed , Database hang [ID 1233079.1]
ORA-00610 And/Or "unable to spawn jobq slave process " And/Or "Process(<>) creation failed" In The Alert Log And/Or TNS-12518/ TNS-12500 In Listener Log [ID 416244.1]
DATABASE CRASH WITH SGA_TARGET [ID 747812.1]
ORA-27300 ORA-27301 ORA-27302 ORA-27303 skgpspawn5 [ID 1125188.1]
Database Crashes With Ora-00449 and Ora-00601 [ID 730287.1]
If this is your production database, please log a severity 1 SR!
Thanks,
Hussein

Similar Messages

  • How to make an webapplication database independent.

    Dear All SDN's,
    I have developed an EJB appliction to call into portal.
    Calling into portal is the other part of this.
    But here what i want to be clear is, i have designed an webapplication which is database independent.
    i.e., like, to connect to any database in SAP J2ee Engine we need to configure the JDBC Connector of Visual administrator.
    I had configure the same in the visual administrator by adding an alias to the existing (System) datasource.
    when i try to access the datasource from the jsp using the following line,
    <b><sql:query dataSource="jdbc/ONLINE_SR_POOL" var="srtype">SELECT * FROM TMP_SR_TYPE</sql:query></b>
    it returns errors. Please advise what it goes wrong. All my web pages run ok from Oracle Application Service or Sun Application Server
    What do you suggest me to establish a database connection so that the JSP can query the data from the data tables? Should I use JavaBean instead of using<sql:query dataSource="jdbc/ONLINE_SR_POOL" var="srtype"> inside the jsp page?
    Tell me where i am going wrong.
    Your inputs will be appreciated,
    Regards,
    Sireesha.B

    Hi,
    Plz specify the errors, what r u getting and in which perspective......
    Thanks
    DKS

  • TRANSFER OF DATA FROM DATABASE TO APPLICATION SERVER

    I have to upload /transfer data from database to application server .
    I am not able to get it.
    If anyone have any solution to it,
    post it to me.
    thanks

    *& Report <name>
    REPORT name.
    DATA:
    BEGIN OF FS_SPFLI,
    CARRID TYPE SPFLI-CARRID,
    CONNID TYPE SPFLI-CONNID,
    COUNTRYFR TYPE SPFLI-COUNTRYFR,
    CITYFROM TYPE SPFLI-CITYFROM,
    AIRPFROM TYPE SPFLI-AIRPFROM,
    COUNTRYTO TYPE SPFLI-COUNTRYTO,
    CITYTO TYPE SPFLI-CITYTO,
    AIRPTO TYPE SPFLI-AIRPTO,
    FLTIME TYPE SPFLI-FLTIME,
    DEPTIME TYPE SPFLI-DEPTIME,
    ARRTIME TYPE SPFLI-ARRTIME,
    DISTANCE TYPE SPFLI-DISTANCE,
    DISTID TYPE SPFLI-DISTID,
    FLTYPE TYPE SPFLI-FLTYPE,
    PERIOD TYPE SPFLI-PERIOD,
    END OF FS_SPFLI.
    DATA:
    T_SPFLI LIKE
    STANDARD TABLE
    OF FS_SPFLI.
    DATA:
    BEGIN OF FS_TABLE,
    CHAR(100) TYPE C,
    END OF FS_TABLE.
    DATA:
    T_TABLE LIKE
    STANDARD TABLE
    OF FS_TABLE.
    DATA:
    BEGIN OF FS_TABLE1,
    CHAR(100) TYPE C,
    END OF FS_TABLE1.
    DATA:
    T_TABLE1 LIKE
    STANDARD TABLE
    OF FS_TABLE1.
    SELECT CARRID
    CONNID
    COUNTRYFR
    CITYFROM
    AIRPFROM
    COUNTRYTO
    CITYTO
    AIRPTO
    FLTIME
    DEPTIME
    ARRTIME
    DISTANCE
    DISTID
    FLTYPE
    PERIOD
    FROM SPFLI
    INTO TABLE T_SPFLI.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    FILENAME = 'd:\files\p_spfli04'
    FILETYPE = 'ASC'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = T_SPFLI
    FIELDNAMES =
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = 'd:\files\p_spfli04'
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = ' '
    HEADER_LENGTH = 0
    READ_BY_LINE = 'X'
    DAT_MODE = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    CHECK_BOM = ' '
    VIRUS_SCAN_PROFILE =
    IMPORTING
    FILELENGTH =
    HEADER =
    TABLES
    DATA_TAB = T_TABLE
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *LOOP AT T_TABLE INTO FS_TABLE.
    WRITE:
    / FS_TABLE-CHAR.
    *ENDLOOP.
    OPEN DATASET 'p_spfli04' FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC EQ 0.
    MESSAGE 'File Already Exists' TYPE 'I'.
    STOP.
    ELSE.
    CLOSE DATASET 'p_spfli04'.
    ENDIF.
    OPEN DATASET 'P_SPFLI02' FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT T_TABLE INTO FS_TABLE.
    TRANSFER FS_TABLE TO 'p_spfli04'.
    ENDLOOP.
    CLOSE DATASET 'p_spfli04'.
    *ENDIF.
    OPEN DATASET 'p_spfli04' FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT T_TABLE INTO FS_TABLE.
    READ DATASET 'p_spfli04' INTO FS_TABLE.
    APPEND FS_TABLE-CHAR TO T_TABLE1.
    ENDLOOP.
    Here is the sample code to download and upload the file onto presentation server and then using OPEN DATASET you'll be able to transfer the data to APPLICATION SERVER....
    Regards,
    Pavan P.

  • Database independant ETL in ODI for SQL Server and Oracle

    Hi,
    We have a requirement to create ETL which can be run for both SQL Server and Oracle.
    We have some tables to be filled from operational database to data warehouse using business requirement.Our goal is to create code which should be database independant.
    We will provide all DB details at the start of execution and it will code for as per provided details.
    The same can be achieved by Talend.
    I wanted to know if same can be achieved in ODI.
    Any pointers regarding this would be helpful.
    Thanks,
    Mahesh

    A quick trick: Provide one more value at the start of execution. It is something like a flag. For example db_flag. It can be either 'O' or 'S'.
    Open both  oracle and sql server KM. Copy one of the KM code to other KM and put an if condition to check the flag.
    if (#DB_FLAG.equalsTo("O")){
    Oracle code goes here...........
    }else{
    SQL Server code goes here...........
    Its a pure KM customization.
    Bhabani
    http://dwteam.in

  • Webdynpro ABAP independent application

    hello,
    I have developed independent application of webdynpro ABAP
    i want to integrate it on portal
    i have page, create iview, assign application url to the iview - all this i do in portal content administration etc
    but in later versions, instead of iview etc, there is bankend transaction code, ie tcode in R/3 where I can assign my web dynpro application to portal
    I need the name of that transaction code. kindly help with your inputs
    thanks
    bhakti

    Hi Bhakti,
    AFAIK there is no such kind of facility available so that you can directly assign your webdynpro into the portal using any t-codes.
    But the SAP Enterprise Portal supports the Web Dynpro application development with functions like:
    Event handling of portal events
    Navigation between Web Dynpro applications within the portal or to any portal content
    WorkProtect mode
    And With Web Dynpro you create interactive Web-based user interfaces for business applications. The portal allows the role-based and secure access to different kinds of information (structured or non-structured), services, and applications using a Web Browser.
    For portal integration, refer the below document which will give you an idea.
    How to Integrate Web Dynpro  ABAP in Portal
    Thanks
    KH

  • Centralized Database and Application Control

    Hi,
    I am looking for idea to centralized control software to manage (start/stop/display status) oracle database, oracle application or other component on unix box, it become harder to manage database (i.e. which command, where is database location/server name) when in organize have lots of database/application/server/version to manage. How is it managed from other people, idea is appreciated.
    Thank you.

    And I assume that you are familiar with all the Enterprise Manager plug-ins that let you monitor non-Oracle systems from Enterprise Manager.
    If you are looking for enterprise management software that has no relationship to Oracle, any enterprise software company is likely to have something for you. But if you specifically want to exclude Oracle's offerings I'm not sure why you would post this request in an Oracle forum. Surely, if you want to use HP software or IBM software or some other vendor's software, it would be more appropriate to post in a HP forum or an IBM forum...
    Justin

  • How to improve database and application performance

    Hi,
    Any body please help me out that how can we improve the database and Application performance.
    Regards,
    Bhatia

    bhatia wrote:
    Hi,
    Any body please help me out that how can we improve the database and Application performance.
    Regards,
    Bhatiathere is no simple answer. There is no DATABASE_FAST=TRUE initialization parameter. There are a myriad of reasons why an application is performing poorly. It could be that the application (code and data relationships) is poorly designed. It could be that individual SQL statements are poorly written. It could be that you don't have enough cpu/memory/disk bandwidth/network bandwidth.
    You need to determine the root cause of poor performance and address it. If you application is poorly designed, you can tune the database until the cows come home and it won't make any difference. If you are trying to run 100k updates per second against a database hosted on hardware that only meets minimal requirements to install Oracle ... well, hopefully you get the picture.
    First, go to tahiti.oracle.com. Drill down to your selected Oracle product and version. There you will find the complete doc library. Find the Performance Tuning Guide
    Second, go to amazon.com and browse titles by Tom Kyte and Cary Milsap. I particularly recommend "Effective Oracle by Design" and "Optimizing Oracle Performance", though I see a lot of new titles that look promising (I think I'll be doing some buying!)

  • Differences in the characterset used by the database & Oracle Applications

    Hi All,
    I have encrypted one column in the database using Oracle DBMS_OBFUSCATION tool package.When the same field is viewed from the application the characters appear different from those that are there in the database and also sometimes the value is truncated from the applications.
    Could anyone please help me understand why it is happening.
    Is there any difference in the characterset used by the database & Oracle Applications ??
    Please help me ASAP.
    Thanks in Advance,
    Aush

    What I mean by the characters displayed on the form in the Oracle Applications is different from the database value is that suppose the value in the database is 8¿x¿"h the characters(part of the string) displayed in the form are different from what is present in the database.

  • Script to know number of users over database and applications.

    hi brothers.
    kindly i need helpl to know script or command of number of online users over database and application.(i need it for performance issue).
    Message was edited by:
    user633617

    set pages 100
    set lines 3000
    col machine format a25
    col username format a15
    col program format a25
    break on 1;
    set heading off;
    select
    'Sessions on database '|| d.name ||' having instance name '|| i.instance_name
    from v$database d,v$instance i;
    set heading on;
    compute sum label 'Total Sessions' of sessions on 1
    select
    1,username,machine,program,count(*) sessions
    from v$session
    group by username,machine,program
    order by username,sessions desc;

  • FW: ADF BC4J unable to connect to database on Application Server 10.1.3.1.0

    Please see ADF BC4J unable to connect to database on Application Server 10.1.3.1.0

    Hello Steve. I'm getting the same error message as Carlos got when he tried to fire up the SRDemo. Following logon the splash screen has this error message:
    Error
    Failed to checkout SRService application module. Ensure your datasource name is SRDemo [case-sensitive!] and that connection settings are properly defined for a database with the SRDEMO schema installed. See server log for more exception details...
    Apparently you guys have figured out a fix for this, but my command of JDeveloper/J2EE jargon is pretty limited at this point in my learning curve. (I've heard about Jndi, but have no idea what it does). Is there a statement I can add to the web.xml file that will fix this? If so, what is that statement, and where does it go in web.xml?
    Thanks in advance.

  • Agents for database and application servers

    hi all,
    I have to go to a client site this week to install Gagents onto some database servers, some will be RAC and some application servers. it is on AIX. are there different agents for database and applications? In a RAC cluster do I need an agent per node?
    rgds
    alan

    When installing agents in a cluster (read - RAC), during the installation, on one of the screens, you will have the option of picking up all the nodes in the cluster. Else, if you are using a push or agent deploy method, you just have to pass the correct flag (can't remember) and then list all the nodes in the cluster.
    To your other questions, you do not need different agents for database, and app servers etc. The only time you would need different agents is when you are installing on different platforms.

  • Automaticallu restart ebs 11i database and application services on rhel5

    Hi,
    I have installed ebs 11i on rhel5.
    Pls advice hot to automatically start services(database and application) after system restart.
    Thank you in advance,
    Denis

    Hi,
    Please see these threads.
    Autostart of Services
    Re: Autostart of Services
    Auto Start Oracle Services didn't work
    Auto Start Oracle Services didn't work
    Regards,
    Hussein

  • MAP Database to Application Mapping

    Experts,
    Can MS MAP(Microsoft Assessment and Planning ) tool be used to extract database to application mapping information for an environment.
    If yes, would it be able to extract info for MS Applications only or all the applications.
    Thanks

    Hi, 
    the MAP is possible to collect information from other software besides MS, for this you must install the SQL Management Studio, Connect the MAP Database "(localdb) \ maptoolkit" and execute the query.
    Do not forget to mark as resolved
    SELECT AllDevices_Assessment.HardwareInventoryCore.ComputerName,Win_Assessment.WindowsInstalledSoftwareFull.Name,Win_Assessment.WindowsInstalledSoftwareFull.Version,Win_Assessment.WindowsInstalledSoftwareFull.InstallLocation
    from AllDevices_Assessment.HardwareInventoryCore
    INNER JOIN Win_Assessment.WindowsInstalledSoftwareFull on (Win_Assessment.WindowsInstalledSoftwareFull.DeviceNumber = AllDevices_Assessment.HardwareInventoryCore.DeviceNumber)
    WHERE Name LIKE '%%'
    AND Name NOT LIKE '%Flash%'
    AND Name Not Like '%Reader%'
    ORder by ComputerName
    Virtual Machines 
    select AllVirt_Assessment.VirtualizationAssessment.ComputerName,AllVirt_Assessment.VirtualizationAssessment.VmachineType,AllVirt_Assessment.VirtualizationAssessment.VmTechnology,AllVirt_Assessment.VirtualizationAssessment.MachineStatus,HyperV_Inventory.HostGuestDetails.GuestName,Win_Inventory.Processors.NumberOfCores,
    Win_Inventory.Processors.NumberOfLogicalProcessors,Win_Inventory.ComputerSystemProduct.Name,ISNULL(AllDevices_Assessment.CategorizedDevices.IsVirtual,0) AS IsVirtual
    from AllVirt_Assessment.VirtualizationAssessment
    inner join AllDevices_Assessment.HardwareInventoryCore on AllDevices_Assessment.HardwareInventoryCore.DeviceNumber
    = AllVirt_Assessment.VirtualizationAssessment.DeviceNumber
    inner join HyperV_Inventory.HostGuestDetails on HyperV_Inventory.HostGuestDetails.DeviceNumber = AllDevices_Assessment.HardwareInventoryCore.DeviceNumber
    inner join Win_Inventory.Processors on Win_Inventory.Processors.DeviceNumber = AllDevices_Assessment.HardwareInventoryCore.DeviceNumber
    inner join Win_Inventory.ComputerSystemProduct on Win_Inventory.ComputerSystemProduct.DeviceNumber = AllDevices_Assessment.HardwareInventoryCore.DeviceNumber
    inner join AllDevices_Assessment.CategorizedDevices on AllDevices_Assessment.CategorizedDevices.DeviceNumber
    = Win_Inventory.ComputerSystemProduct.DeviceNumber
    Printer
    Select AllDevices_Assessment.HardwareInventoryCore.ComputerName,[Unused].[Printers].DeviceId
    from AllDevices_Assessment.HardwareInventoryCore
    inner join Win_Inventory.NetworkAdapterConfigurations on Win_Inventory.NetworkAdapterConfigurations.DeviceNumber
    = [Win_Inventory].[NetworkAdapterConfigurations].DeviceNumber
    inner join Unused.Printers on (Unused.Printers.DeviceNumber) = AllDevices_Assessment.HardwareInventoryCore.DeviceNumber 
    where [Unused].[Printers].DeviceId like 'HP%' or [Unused].[Printers].DeviceId  like 'EPSON%';
    Lucas Simoes Rezende MCP, MCTS , ITIL V3

  • Database and application getting hange (urgent please reply asap)

    hi,
    in alerlt log i found
    Process q003 died, see its trace file
    Thu Nov 24 10:50:36 IST 2011
    ksvcreate: Process(q003) creation failed
    Thu Nov 24 10:56:21 IST 2011
    ksvcreate: Process(m000) creation failed
    Thu Nov 24 11:03:30 IST 2011
    kkjcre1p: unable to spawn jobq slave process
    Thu Nov 24 11:03:30 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/bdump/prod_cjq0_13539.trc:
    Thu Nov 24 11:04:21 IST 2011
    Beginning log switch checkpoint up to RBA [0x25b4.2.10], SCN: 14824976075
    Thu Nov 24 11:04:21 IST 2011
    Thread 1 advanced to log sequence 9652 (LGWR switch)
    Current log# 8 seq# 9652 mem# 0: /log1/PROD/log08a.dbf
    Current log# 8 seq# 9652 mem# 1: /log1/PROD/log08b.dbf
    Thu Nov 24 11:06:40 IST 2011
    ksvcreate: Process(m000) creation failed
    Thu Nov 24 11:10:00 IST 2011
    Completed checkpoint up to RBA [0x25b4.2.10], SCN: 14824976075
    Thu Nov 24 11:10:34 IST 2011
    kkjcre1p: unable to spawn jobq slave process
    Thu Nov 24 11:10:34 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/bdump/prod_cjq0_13539.trc:
    Thu Nov 24 11:12:55 IST 2011
    ksvcreate: Process(q000) creation failed
    Thu Nov 24 11:15:12 IST 2011
    kkjcre1p: unable to spawn jobq slave process
    Thu Nov 24 11:15:12 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/bdump/prod_cjq0_13539.trc:
    Thu Nov 24 11:17:14 IST 2011
    ksvcreate: Process(m000) creation failed
    please reply it urgent..
    in trc file
    $ cat prod_cjq0_13539.trc
    Dump file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/bdump/prod_cjq0_13539.
    trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /appl2/oracle2/proddb/10.2.0
    System name: SunOS
    Node name: devserver
    Release: 5.9
    Version: Generic_118558-06
    Machine: sun4u
    Instance name: PROD
    Redo thread mounted by this instance: 1
    Oracle process number: 10
    Unix process pid: 13539, image: oracle@devserver (CJQ0)
    *** 2011-11-24 10:57:22.769
    *** SERVICE NAME:(SYS$BACKGROUND) 2011-11-24 10:57:22.430
    *** SESSION ID:(392.1) 2011-11-24 10:57:22.430
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 10:57:32.840
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 10:57:42.940
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 10:57:53.030
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 10:58:03.120
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 10:58:13.200
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:03:30.801
    *** 2011-11-24 11:07:41.160
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:07:51.240
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:08:01.320
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:08:11.390
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:08:21.480
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:08:31.580
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:10:34.930
    *** 2011-11-24 11:13:56.060
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:14:06.150
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:14:16.250
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:14:26.330
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:14:36.410
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:14:46.480
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:15:12.996
    *** 2011-11-24 11:18:15.140
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:18:25.240
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:18:35.340
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:18:53.340
    Waited for process J000 to initialize for 90 seconds
    *** 2011-11-24 11:18:53.340
    Process diagnostic dump for J000, OS id=3356
    *** 2011-11-24 11:19:29.960
    loadavg : 0.08 0.25 0.78
    swap info: free_mem = 91.27M rsv = 10468.67M
    alloc = 9840.79M avail = 291.52 swap_free = 919.41M
    skgpgcmdout: read() for cmd /bin/ps -elf | /bin/egrep 'PID | 3356' | /bin/grep -
    v grep timed out after 15.000 seconds
    Skipping stack dump because max dump time exceeded.
    Process diagnostic dump actual duration=36.292000 sec
    (max dump time=30.000000 sec)
    *** 2011-11-24 11:19:29.960
    *** 2011-11-24 11:19:40.060
    Waited for process J000 to initialize for 100 seconds
    *** 2011-11-24 11:19:40.060
    Process diagnostic dump for J000, OS id=3356
    *** 2011-11-24 11:20:08.770
    loadavg : 0.27 0.28 0.77
    swap info: free_mem = 92.57M rsv = 10465.16M
    alloc = 9837.60M avail = 297.86 swap_free = 925.42M
    skgpgcmdout: read() for cmd /bin/ps -elf | /bin/egrep 'PID | 3356' | /bin/grep -
    v grep timed out after 15.000 seconds
    *** 2011-11-24 11:20:51.830
    Stack:
    skgpgcmdout: read() for cmd /bin/sh -c '/usr/proc/bin/pstack 3356 2>&1' timed ou
    t after 1.290 seconds
    Process diagnostic dump actual duration=1 min 11 sec
    (max dump time=30.000000 sec)
    *** 2011-11-24 11:20:51.830
    *** 2011-11-24 11:21:01.930
    Waited for process J000 to initialize for 110 seconds
    *** 2011-11-24 11:21:01.930
    Process diagnostic dump for J000, OS id=3356
    loadavg : 0.12 0.24 0.71
    swap info: free_mem = 91.25M rsv = 10487.99M
    alloc = 9844.82M avail = 272.81 swap_free = 915.98M
    F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY T
    IME CMD
    8 Z oracle2 3356 1 0 0 0
    :00 <defunct>
    *** 2011-11-24 11:22:36.567
    Skipping stack dump because max dump time exceeded.
    Process diagnostic dump actual duration=1 min 34 sec
    (max dump time=30.000000 sec)
    *** 2011-11-24 11:22:36.567
    Killing process (ospid 3356): (reason=x4 error=0)
    ... and the process is still alive after kill!
    *** 2011-11-24 11:28:16.400
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:28:26.470
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:28:36.560
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:28:46.640
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:28:56.730
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:29:06.810
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:29:48.503
    *** 2011-11-24 11:35:26.030
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:35:36.130
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:35:46.210
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:35:56.310
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:36:06.390
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:36:16.490
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:38:51.157
    *** 2011-11-24 11:47:42.830
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:47:52.910
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:48:03.000
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:48:13.060
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:48:23.140
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:48:33.230
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:49:12.586
    *** 2011-11-24 11:52:35.420
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:52:45.520
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:52:55.610
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:53:05.700
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:53:15.790
    Waited for process J000 to be spawned for 100 seconds
    *** 2011-11-24 11:53:25.890
    Waited for process J000 to be spawned for 110 seconds
    *** 2011-11-24 11:53:59.129
    *** 2011-11-24 11:57:08.260
    Waited for process J000 to be spawned for 60 seconds
    *** 2011-11-24 11:57:18.350
    Waited for process J000 to be spawned for 70 seconds
    *** 2011-11-24 11:57:28.450
    Waited for process J000 to be spawned for 80 seconds
    *** 2011-11-24 11:57:38.540
    Waited for process J000 to be spawned for 90 seconds
    *** 2011-11-24 11:57:48.640
    Waited for process J000 to initialize for 100 seconds
    *** 2011-11-24 11:57:48.640
    Process diagnostic dump for J000, OS id=4205
    loadavg : 0.22 0.33 0.67
    swap info: free_mem = 91.70M rsv = 10505.02M
    alloc = 9858.01M avail = 251.46 swap_free = 898.47M
    F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY T
    IME CMD
    8 S oracle2 4205 1 0 39 20 ? 410092 ? 11:57:12 ? 0
    :00 ora_j000_PROD
    *** 2011-11-24 11:58:28.337
    Skipping stack dump because max dump time exceeded.
    Process diagnostic dump actual duration=39.697000 sec
    (max dump time=30.000000 sec)
    *** 2011-11-24 11:58:28.337
    *** 2011-11-24 11:58:38.430
    Waited for process J000 to initialize for 110 seconds
    *** 2011-11-24 11:58:38.430
    Process diagnostic dump for J000, OS id=4205
    *** 2011-11-24 11:59:10.850
    loadavg : 0.59 0.40 0.68
    swap info: free_mem = 91.31M rsv = 10505.02M
    alloc = 9858.01M avail = 251.19 swap_free = 898.20M
    skgpgcmdout: read() for cmd /bin/ps -elf | /bin/egrep 'PID | 4205' | /bin/grep -
    v grep timed out after 15.000 seconds
    Skipping stack dump because max dump time exceeded.
    Process diagnostic dump actual duration=32.420000 sec
    (max dump time=30.000000 sec)
    *** 2011-11-24 11:59:10.850
    Killing process (ospid 4205): (reason=x4 error=0)
    ... and the process is still alive after kill!
    $
    now i am not able to connect database

    Please see these docs.
    Ksvcreate: Process(M001) Creation Failed , Database hang [ID 1233079.1]
    ORA-00610 And/Or "unable to spawn jobq slave process " And/Or "Process(<>) creation failed" In The Alert Log And/Or TNS-12518/ TNS-12500 In Listener Log [ID 416244.1]
    DATABASE CRASH WITH SGA_TARGET [ID 747812.1]
    ORA-27300 ORA-27301 ORA-27302 ORA-27303 skgpspawn5 [ID 1125188.1]
    Database Crashes With Ora-00449 and Ora-00601 [ID 730287.1]
    If this is your production database, please log a severity 1 SR!
    Thanks,
    Hussein

  • Database connection in a WebDynpro Application - urgent

    Hi
    I am facing a problem with database connection. I am trying to develop a normal webdynpro application.
    I want to retrieve data from a table and show it.
    But my query is not giving the expected output. It is not even raising errors.
    Please give me an answer
    Thanks & regards
    Aparnna

    Connection con=null;
      Statement st=null;
      ResultSet rs=null;
    public void wdDoInit()
        //@@begin wdDoInit()
    try
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
      con = DriverManager.getConnection("jdbc:odbc:erdsn","root","enteg123");
      st=con.createStatement();
        catch(Exception e){
        //@@end
    public void onActiononClickLogin(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiononClickLogin(ServerEvent)
         String desig=null;
    try{
    rs = st.executeQuery("select *  from Login where Empid like uid and Pword like pw");
        if(rs.next()){
               desig=rs.getString("Designation");
         wdComponentAPI.getComponent().getMessageManager().reportSuccess(desig);
        if(desig.equalsIgnoreCase("Employee")){
              wdThis.wdFirePlugEmpOutPlug();
         else
         wdComponentAPI.getComponent().getMessageManager().reportWarning("Invalid input!");
          }catch(Exception e){

Maybe you are looking for