Problem starting Apps Database

My env file is not correct. By mistake i have deleted some content in custom_sid.env file I installed oracle apps 11i on RHEL4 AS.Please can you send the your env files which would help in starting the database.
Thanks in Advance

By mistake i have deleted some content in custom_sid.env file This is a custom file which contains your custom settings/configurations, so getting any other copy would not be helpful.
If you want to generate the main application env files (env files under $APPL_TOP), then run adadmin and select:
2. Maintain Applications Files menu
2. Create Applications environment file

Similar Messages

  • Problem starting oracle database in notebook,

    Hi,
    Sub: Problem starting database in notebook,
    I installed windows 2000 professional(OS) and installed oracle 9i on it. I have been hibernating my notebook since two weeks, i am facing a problem, when i restart my system, system is unable to start my database unless i restart the listener at services.msc. My system speed is 500 mhz, 256 RAM. 10 GB HD. If anyone has a answer pls help me.
    Thanks in advance
    Mahesh Ragineni

    Aaron Kaplan (guest) wrote:
    : Rodney A. Ramos (guest) wrote:
    : : I've just installed Oracle 8.0.5 on Linux Red Hat 5.2. I
    didn't
    : : have problems during the installation, but after that ...
    : : First of all, my "dbora" script doens't work. I don't know
    why,
    : : because it's in the directory /etc/rc.d/init.d. Then, when I
    : try
    : : to start it manually, the follow mistake appear:
    : : ===
    : : ./dbora: [!: command not found
    : Hi!
    : There seems indeed to be a problem here - AFAIK the guy who
    wrote
    : the startup srcipt made a syntax mistake.
    : Try changing the line:
    : : if [! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME]
    : to:
    : if [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]
    : notice the space right after the first "[" and right before the
    : last "]"
    : (Read the man pages for sh or bash whatever you use and look
    : under "if", also "man test" should bring some insight).
    : Hope it helps. Tell me if it worked.
    : Aaron.
    Dear Aaron,
    It worked perfectly. Thank you very much!
    However, I'm still having problem to connect to the Database. The
    fact is that the dbora script calls the dbstart script ("su -
    $ORA_OWNER -c $ORA_HOME/bin/dbstart &") and, inside this script,
    we have the command "connect internal". At this point, I receive
    the error message "ORA-01031: insufficient privileges".
    I don't know if this has influency at the startup of the
    Database, because at the end of the process I receive the message
    "Database "orac" warm started".
    But what I know is that I don't managed to connect to the
    Database using the svrmgrl or the sqlplus. I receive the error
    message "ORA-01034: ORACLE not available" for every account I
    try: system/manager, sys/change_on_install, oracle/xxxx (the
    account I installed Oracle), and when I try "connect internal",
    it asks me for a password!!!
    Thanks once more,
    Rodney A. Ramos.
    null

  • Problem starting Oracle Database

    I've just installed Oracle 8.0.5 on Linux Red Hat 5.2. I didn't
    have problems during the installation, but after that ...
    First of all, my "dbora" script doens't work. I don't know why,
    because it's in the directory /etc/rc.d/init.d. Then, when I try
    to start it manually, the follow mistake appear:
    ===
    ./dbora: [!: command not found
    ===
    It seems that it is a sintaxe error, but I copied exactly as in
    the Installation Guide, like as:
    =======
    # Set ORA_HOME to be equivalent to the ORACLE_HOME
    # from which you wish to execute dbstart and
    # dbshut
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME
    ORA_HOME=/u01/app/oracle/product/8.0.5
    ORA_OWNER=oracle
    if [! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case "$1" in
    'start')
    # Start the Oracle database:
    su - $ORA_OWNER -c $ORA_HOME/bin/dbstart &
    'stop')
    # Stop the Oracle database:
    su - $ORA_OWNER -c $ORA_HOME/bin/dbshut &
    esac
    su - oracle -c "lsnrctl start"
    ======
    Is there any mistake?
    Besides, when I try to start the Oracle Database, through the
    command "dbstart", the following messages appear:
    =============
    Database "orac" possibly left running when system went down
    (system crash?).
    Notify Database Administrator.
    Oracle Server Manager Release 3.0.5.0.0 - Production
    (c) Copyright 1997, Oracle Corporation. All Rights Reserved.
    Oracle8 Enterprise Edition Release 8.0.5.1.0 - Production
    With the Partitioning and Objects options
    PL/SQL Release 8.0.5.1.0 - Production
    SVRMGR> Password:
    Password:
    ORA-01031: insufficient privileges
    SVRMGR> ORA-01031: insufficient privileges
    SVRMGR>
    Server Manager complete.
    Oracle Server Manager Release 3.0.5.0.0 - Production
    (c) Copyright 1997, Oracle Corporation. All Rights Reserved.
    Oracle8 Enterprise Edition Release 8.0.5.1.0 - Production
    With the Partitioning and Objects options
    PL/SQL Release 8.0.5.1.0 - Production
    SVRMGR> Password:
    Password:
    ORA-01031: insufficient privileges
    SVRMGR> ORA-01031: insufficient privileges
    SVRMGR>
    Server Manager complete.
    Database "orac" warm started.
    ==============
    Although it seems that the Database was started ('Database "orac"
    warm started'), I don't know why the mistake ORA-01031 appears.
    Was the Database "orac" started correctly?
    After, when I try to use the Server Manager to connect to the
    Database as system/manager, the following message appears:
    ========
    SVRMGR> connect system/manager
    ORA-01034: ORACLE not available
    =======
    Has this mistake something to do with the first one (ORA-01031)?
    Could someone help me? I'd be very grateful.
    Rodney A. Ramos.
    null

    Aaron Kaplan (guest) wrote:
    : Rodney A. Ramos (guest) wrote:
    : : I've just installed Oracle 8.0.5 on Linux Red Hat 5.2. I
    didn't
    : : have problems during the installation, but after that ...
    : : First of all, my "dbora" script doens't work. I don't know
    why,
    : : because it's in the directory /etc/rc.d/init.d. Then, when I
    : try
    : : to start it manually, the follow mistake appear:
    : : ===
    : : ./dbora: [!: command not found
    : Hi!
    : There seems indeed to be a problem here - AFAIK the guy who
    wrote
    : the startup srcipt made a syntax mistake.
    : Try changing the line:
    : : if [! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME]
    : to:
    : if [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]
    : notice the space right after the first "[" and right before the
    : last "]"
    : (Read the man pages for sh or bash whatever you use and look
    : under "if", also "man test" should bring some insight).
    : Hope it helps. Tell me if it worked.
    : Aaron.
    Dear Aaron,
    It worked perfectly. Thank you very much!
    However, I'm still having problem to connect to the Database. The
    fact is that the dbora script calls the dbstart script ("su -
    $ORA_OWNER -c $ORA_HOME/bin/dbstart &") and, inside this script,
    we have the command "connect internal". At this point, I receive
    the error message "ORA-01031: insufficient privileges".
    I don't know if this has influency at the startup of the
    Database, because at the end of the process I receive the message
    "Database "orac" warm started".
    But what I know is that I don't managed to connect to the
    Database using the svrmgrl or the sqlplus. I receive the error
    message "ORA-01034: ORACLE not available" for every account I
    try: system/manager, sys/change_on_install, oracle/xxxx (the
    account I installed Oracle), and when I try "connect internal",
    it asks me for a password!!!
    Thanks once more,
    Rodney A. Ramos.
    null

  • Problem starting RAC database instance on Node 2

    Hi all,
    I have the following problem after installing RAC 10.2.0 with 2 nodes (clusternode1 & clusternode2).
    I'll greatly appreciate if someone could help fix this:
    oracle@clusternode2:~> srvctl status nodeapps -n clusternode1
    VIP is running on node: clusternode1
    GSD is running on node: clusternode1
    Listener is running on node: clusternode1
    ONS daemon is running on node: clusternode1
    oracle@clusternode2:~> srvctl status nodeapps -n clusternode2
    VIP is running on node: clusternode2
    GSD is running on node: clusternode2
    Listener is running on node: clusternode2
    ONS daemon is running on node: clusternode2
    oracle@clusternode2:~>
    oracle@clusternode2:~> srvctl status asm -n clusternode1
    ASM instance +ASM1 is running on node clusternode1.
    oracle@clusternode2:~> srvctl status asm -n clusternode2
    ASM instance +ASM2 is running on node clusternode2.
    oracle@clusternode2:~>
    oracle@clusternode2:~> srvctl status database -d orcl
    Instance orcl1 is running on node clusternode1
    Instance orcl2 is not running on node clusternode2 <-------Here is the problem!!!!!!!!!!!!!!!!
    oracle@clusternode2:~>
    So when I try to start the orcl2 instance I receive:
    oracle@clusternode2:~> srvctl start instance -d orcl -i orcl2
    PRKP-1001 : Error starting instance orcl2 on node clusternode2
    CRS-0215: Could not start resource 'ora.orcl.orcl2.inst'.
    oracle@clusternode2:~>
    I tried to do it per SQL*PLus:
    oracle@clusternode2:~> echo $ORACLE_SID
    orcl2
    oracle@clusternode2:~> sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Mar 27 21:08:59 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORA-01078: failure in processing system parameters
    ORA-01565: error in identifying file '+ORCLDATAGRP1/orcl/spfileorcl.ora'
    ORA-17503: ksfdopn:2 Failed to open file +ORCLDATAGRP1/orcl/spfileorcl.ora
    ORA-15077: could not locate ASM instance serving a required diskgroup
    SQL>
    But ASM is there and running !!!!!!!!!!!
    Thanks very much for any tip how to get ride of this problem.
    Kind regards.
    Askia.

    muba_zak wrote:
    Thanks John,
    How the cron jobs takes care, is there any different is there between Admin Managed & Policy Managed
    Thanks.
    Muba
    I don't know what your cron jobs do. If (for example) they logon to the database through a service published by the scan listeners, they will be happy. If they logon using a deterministic connect string, you have a problem - a problem caused by mis-using the system.

  • Problem starting second database

    Hello everybody,
    after I was finally able to create a second database it won't
    start. When running the dbstart script it starts the first
    database fine and then tries to start the second. it then
    generates the following error messages:
    SQL> Connected to an idle instance.
    SQL> ORA-27302: failure occurred at: skgpwreset1
    ORA-27303: additional information: invalid shared ctx
    ORA-27146: post/wait initialization failed
    ORA-27300: OS system dependent operation:semget failed with
    status: 28
    ORA-27301: OS failure message: No space left on device
    ORA-27302: failure occurred at: sskgpsemsper
    SQL> Disconnected
    Database "MSIS5643" warm started.
    I should have enough space on the diskdrive since there about 4.5
    GB free diskspace for /export/home and 512 MB /tmp as swap.
    Any suggestions what to do?
    Best regards,
    Ingo
    P.S.: I'm running Oracle under Solaris on a SunBlade 100

    Try to add the extra parameters to the etc/system file listed
    below.
    Remember to backup this file, if you wite something really
    ridiculous here your system won't boot.
    etc/system snippet:
    set shmsys:shminfo_shmmax=4294967295
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=10
    set semsys:seminfo_semmni=100
    set semsys:seminfo_semmsl=200
    set semsys:seminfo_semmns=600
    set semsys:seminfo_semopm=100
    set semsys:seminfo_semvmx=32767
    These are all values derived from the Oracle Docs.
    We had some trouble having 2 Oracle instances running on a
    single Netra T1 512Mb box, used as a Test DB and the additional
    parameters in the next section were recommended to us from our
    hosting partner. If anyone could comment on the validity of
    these it would be greatly recommended.
    # Additional recommendation
    set priority_paging=1
    set maxuprc=80
    set pt_cnt=500

  • Problem starting database

    TOday morning standby server closed (due to power problem). and now having problem starting standby database with the following error message
    SQL> startup
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/oracle/product/10.2.0/db_1/dbs/init/alpabkcp.ora'
    SQL> startup pfile='/oracle/product/10.2.0/db_1/admin/alpaorcl/pfile/initalpabkcp.ora';
    ORA-10997: another startup/shutdown operation of this instance inprogress
    ORA-09967: unable to create or open lock file
    Linux-x86_64 Error: 2: No such file or directory
    my alert log file line
    RFS[1]: Archived Log: '/alphabkcp/alpharch/alpaorcl_1_2903_656011503.arch'
    Primary database is in MAXIMUM PERFORMANCE mode
    RFS[1]: No standby redo logfiles of size 512000 blocks exist
    Fri Sep 4 07:23:04 2009
    Media Recovery Log /alphabkcp/alpharch/alpaorcl_1_2903_656011503.arch
    Fri Sep 4 07:23:18 2009
    Media Recovery Waiting for thread 1 sequence 2904 (in transit)
    Fri Sep 4 12:40:32 2009
    RFS[1]: Archived Log: '/alphabkcp/alpharch/alpaorcl_1_2904_656011503.arch'
    Primary database is in MAXIMUM PERFORMANCE mode
    RFS[1]: No standby redo logfiles of size 512000 blocks exist
    Fri Sep 4 12:40:34 2009
    Media Recovery Log /alphabkcp/alpharch/alpaorcl_1_2904_656011503.arch
    Fri Sep 4 12:41:08 2009
    Media Recovery Waiting for thread 1 sequence 2905 (in transit)
    Fri Sep 4 23:27:22 2009
    RFS[1]: Archived Log: '/alphabkcp/alpharch/alpaorcl_1_2905_656011503.arch'
    Primary database is in MAXIMUM PERFORMANCE mode
    RFS[1]: No standby redo logfiles of size 512000 blocks exist
    Fri Sep 4 23:27:24 2009
    Media Recovery Log /alphabkcp/alpharch/alpaorcl_1_2905_656011503.arch
    Fri Sep 4 23:27:44 2009
    Media Recovery Waiting for thread 1 sequence 2906 (in transit)
    After close server i was restart server two time but my alert file show same error.

    HI..
    Shutdown the standby database, copy the controlfile to the locations you want, edit the pfile and add the locations of the controlfiles in contfrol_files parameter , save it and startup nomount pfile='location';
    Then mount the standby database and create spfile from pfile;
    Anand
    Edited by: Anand... on Sep 6, 2009 1:02 AM

  • Problems starting Replication on large databases - SQL 2012

    Hi all,
    I have been battling SQL Server for a week trying to get replication up and running, now I realize that most probably I am doing something wrong and I hope that one of you can help pointing me in the right direction.
    I want to start replication of a big (180GB) database in my lab environment and every time the end result is errors of the type "The row was not found at the Subscriber when applying the replicated command. (Source: MSSQLServer, Error number: 20598)".
    There are more than one database to be replicated and the smaller ones (<= 4GB) have started without problems, a medium database of 21GB had one similar error and has been running for a few days since I found and inserted the missing data in the subscriber
    DB.
    A couple of facts:
    - I have set up the distributor as a remote distributor since the publishers are mirrored databases.
    - I assume the distributor setup is OK since all the replicated databases are taking the same 'path' and the smaller ones are working.
    - The distributor and the subscriber are set up on the same server.
    - All in all the following procedure takes about 3.5-4 hours.
    - The database is running in Full Recovery mode
    - All log backups on the publisher are turned off for the duration.
    Here's what I do:
    On the publisher
    Create the publication and add all the articles
    use [Zaragoza]
    exec sp_replicationdboption @dbname = N'Zaragoza',
    @optname = N'publish',
    @value = N'true'
    GO
    exec [Zaragoza].sys.sp_addlogreader_agent @job_login = N'NS-LAB-DB-40\SqlServiceUser',
    @job_password = N'********', -- Modify Here
    @publisher_security_mode = 1,
    @job_name = null
    GO
    -- Adding the transactional publication
    exec sp_addpublication @publication = N'Zaragoza_Full',
    @description = N'Transactional publication of database ''Zaragoza'' from Publisher ''NS-LAB-DB-38''.',
    @sync_method = N'concurrent',
    @retention = 0,
    @allow_push = N'true',
    @allow_pull = N'true',
    @allow_anonymous = N'false',
    @enabled_for_internet = N'false',
    @snapshot_in_defaultfolder = N'true',
    @compress_snapshot = N'false',
    @ftp_port = 21,
    @allow_subscription_copy = N'false',
    @add_to_active_directory = N'false',
    @repl_freq = N'continuous',
    @status = N'active',
    @independent_agent = N'true',
    @immediate_sync = N'true', -- Needs TRUE
    @allow_sync_tran = N'false',
    @allow_queued_tran = N'false',
    @allow_dts = N'false',
    @replicate_ddl = 1,
    @allow_initialize_from_backup = N'true', -- Modify Here
    @enabled_for_p2p = N'false',
    @enabled_for_het_sub = N'false'
    GO
    /* SHOULD not need this since no snapshots will be generated
    exec sp_addpublication_snapshot @publication = N'Zaragoza_Full',
    @frequency_type = 1,
    @frequency_interval = 1,
    @frequency_relative_interval = 1,
    @frequency_recurrence_factor = 0,
    @frequency_subday = 8,
    @frequency_subday_interval = 1,
    @active_start_time_of_day = 0,
    @active_end_time_of_day = 235959,
    @active_start_date = 0,
    @active_end_date = 0,
    @job_login = N'NS-LAB-DB-40\SqlServiceUser',
    @job_password = N'********',
    @publisher_security_mode = 1
    exec sp_addarticle @publication = N'Zaragoza_Full',
    @article = N'__MigrationLog',
    @source_owner = N'dbo',
    @source_object = N'__MigrationLog',
    @type = N'logbased',
    @description = null,
    @creation_script = null,
    @pre_creation_cmd = N'drop',
    @schema_option = 0x000000000803509F,
    @identityrangemanagementoption = N'manual',
    @destination_table = N'__MigrationLog',
    @destination_owner = N'dbo',
    @vertical_partition = N'false',
    @ins_cmd = N'CALL sp_MSins_dbo__MigrationLog',
    @del_cmd = N'CALL sp_MSdel_dbo__MigrationLog',
    @upd_cmd = N'SCALL sp_MSupd_dbo__MigrationLog'
    GO
    -- MANY more "EXEC sp_addarticle"....
    On the publisher
    I recompile the subscription SPs since I had problems with them once.
    I use the output from the following statement:
    USE Zaragoza;
    EXEC sp_scriptpublicationcustomprocs @publication=N'Zaragoza_Full';
    On the publisher
    I backup the database & log
    BACKUP DATABASE Zaragoza TO DISK = 'E:\Backup\Zaragoza_FULL.bkp' WITH INIT, STATS=5;
    BACKUP LOG Zaragoza TO DISK = 'E:\Backup\Zaragoza_LOG.bkp' WITH INIT, STATS=5;
    On the subscriber
    Copy the backups from the publisher
    CD /D E:\Backup
    COPY /Y \\NS-LAB-DB-38-mirror\Backup\Zaragoza_FULL.bkp .
    COPY /Y \\NS-LAB-DB-38-mirror\Backup\Zaragoza_LOG.bkp .
    On the subscriber
    Restore the database and log backups
    USE [master]
    GO
    RESTORE DATABASE Zaragoza_Sub
    FROM DISK = 'E:\Backup\Zaragoza_FULL.bkp'
    WITH NORECOVERY, REPLACE, STATS=5,
    MOVE 'Zaragoza' TO 'I:\mssql_repl\Zaragoza_Sub\Zaragoza_Sub.mdf',
    MOVE 'Zaragoza_log' TO 'I:\mssql_repl\Zaragoza_Sub\Zaragoza_Sub_log.ldf';
    GO
    RESTORE LOG Zaragoza_Sub
    FROM DISK = 'E:\Backup\Zaragoza_LOG.bkp'
    WITH RECOVERY, STATS=25;
    GO
    On the subscriber
    Remove all triggers since I noticed that they interfered with the replication SPs
    USE Zaragoza_Sub;
    DECLARE @Trigger nvarchar(100),
    @SQL nvarchar(2000);
    DECLARE curTriggers CURSOR
    LOCAL FAST_FORWARD FOR
    SELECT DISTINCT tr.name TriggerName--, te.type_desc TriggerType, ob.name TableName, tr.is_disabled, c.text
    FROM sys.triggers tr INNER JOIN
    sys.trigger_events te ON tr.object_id = te.object_id INNER JOIN
    sys.objects ob ON tr.parent_id = ob.object_id;
    OPEN curTriggers;
    FETCH NEXT FROM curTriggers INTO @Trigger;
    WHILE @@FETCH_STATUS = 0
    BEGIN
    SELECT @SQL = 'DROP TRIGGER dbo.' + @Trigger + ';';
    EXEC sp_executesql @SQL;
    FETCH NEXT FROM curTriggers INTO @Trigger;
    END;
    CLOSE curTriggers;
    DEALLOCATE curTriggers;
    On the publisher
    Add the subscription and the push agent
    -----------------BEGIN: Script to be run at Publisher 'NS-LAB-DB-38'-----------------
    use [Zaragoza]
    exec sp_addsubscription @publication = N'Zaragoza_Full',
    @subscriber = N'NS-LAB-DB-40',
    @destination_db = N'Zaragoza_Sub',
    @subscription_type = N'Push',
    @sync_type = N'initialize with backup', --@sync_type = N'replication support only',
    @status = N'active', -- ADD this line
    @article = N'all',
    @update_mode = N'read only',
    @subscriber_type = 0,
    @backupdevicetype=N'disk',
    @backupdevicename=N'E:\backup\Zaragoza_LOG.bkp';
    exec sp_addpushsubscription_agent @publication = N'Zaragoza_Full',
    @subscriber = N'NS-LAB-DB-40',
    @subscriber_db = N'Zaragoza_Sub',
    @job_login = N'NS-LAB-DB-40\SqlServiceUser',
    @job_password = N'********', -- Modify Here
    @subscriber_security_mode = 1,
    @frequency_type = 64,
    @frequency_interval = 0,
    @frequency_relative_interval = 0,
    @frequency_recurrence_factor = 0,
    @frequency_subday = 0,
    @frequency_subday_interval = 0,
    @active_start_time_of_day = 0,
    @active_end_time_of_day = 235959,
    @active_start_date = 20140618,
    @active_end_date = 99991231,
    @enabled_for_syncmgr = N'False',
    @dts_package_location = N'Distributor';
    GO
    -----------------END: Script to be run at Publisher 'NS-LAB-DB-38'-----------------
    The worst part is that this is only a LAB system, when I apply this to Live I will have to deal with a 24/7 environment with 10,000+ transactions a day, so downtime is a total No-No.
    If you are missing any details do not hesitate to ask, I will gladly provide all the details I have.
    Have a great day
    DS

    Hi Ashwin,
    I have tried a few things these last couple of days and here's where I'm at.
    I looked through the publisher database for the missing row so I could just copy it over but the row was nowhere to be found. After talking to the developers I found out that the table in question has a clean-up job that deletes records when they are finished
    - OK, no problem, the replication should take care of that.
    When I then look at the trace from the Distributor I find a bunch of records where the ID of the missing row is used. However, I find it peculiar that the replication first does updates to a record, then deletes it only to continue doing updates afterwards.
    A sample from the Trace will explain better:
    The SPs are
    sp_MSupd_dboMessageDialog => This SP tries to do the failing UPDATE on the table, the second to last parameter is the RowId in the table (1075152)
    sp_MSdel_dboMessageDialog => This SP tries to DELETE from the table, the only parameter is the RowId in the table (1075152)
    There is one other SP in the replication of this article (table) and it is called sp_MSins_dboMessageDialog and it should be used for inserting records into the table. However it is never called.
    RowNumber
    EventClassName
    TextData
    EventSequence
    StartTime
    EndTime
    2899078
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74255940
    2014-08-13 14:22:15.763
    NULL
    2899372
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74256234
    2014-08-13 14:22:16.270
    NULL
    2899446
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74256312
    2014-08-13 14:22:16.270
    2014-08-13 14:22:17.923
    2899447
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74256313
    2014-08-13 14:22:15.763
    2014-08-13 14:22:17.923
    2899462
    RPC:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74256328
    2014-08-13 14:22:17.927
    NULL
    2899558
    SP:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74256420
    2014-08-13 14:22:17.940
    NULL
    2899606
    SP:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74256468
    2014-08-13 14:22:17.940
    2014-08-13 14:22:17.940
    2899607
    RPC:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74256469
    2014-08-13 14:22:17.927
    2014-08-13 14:22:17.940
    2915054
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74272198
    2014-08-13 14:22:56.577
    NULL
    2915118
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74272262
    2014-08-13 14:22:56.587
    NULL
    2915353
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74272497
    2014-08-13 14:22:56.587
    2014-08-13 14:22:56.597
    2915354
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74272498
    2014-08-13 14:22:56.577
    2014-08-13 14:22:56.597
    2994616
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74352996
    2014-08-13 14:26:13.227
    NULL
    2994701
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74353159
    2014-08-13 14:26:13.647
    NULL
    2994749
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74353266
    2014-08-13 14:26:13.647
    2014-08-13 14:26:13.647
    2994750
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74353267
    2014-08-13 14:26:13.227
    2014-08-13 14:26:15.163
    2995292
    RPC:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74353810
    2014-08-13 14:26:15.240
    NULL
    2995331
    SP:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74353849
    2014-08-13 14:26:15.250
    NULL
    2995389
    SP:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74353911
    2014-08-13 14:26:15.250
    2014-08-13 14:26:15.603
    2995390
    RPC:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74353912
    2014-08-13 14:26:15.240
    2014-08-13 14:26:15.603
    3000727
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74359306
    2014-08-13 14:26:29.413
    NULL
    3000795
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74359374
    2014-08-13 14:26:29.423
    NULL
    3000843
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74359422
    2014-08-13 14:26:29.423
    2014-08-13 14:26:29.427
    3000844
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74359423
    2014-08-13 14:26:29.413
    2014-08-13 14:26:29.427
    3081879
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74441576
    2014-08-13 14:29:56.223
    NULL
    3082017
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74441868
    2014-08-13 14:29:58.060
    NULL
    3082209
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74442059
    2014-08-13 14:29:58.060
    2014-08-13 14:29:58.067
    3082210
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74442060
    2014-08-13 14:29:56.223
    2014-08-13 14:29:58.070
    3082470
    RPC:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74442320
    2014-08-13 14:29:58.097
    NULL
    3082471
    SP:Starting
    exec [sp_MSdel_dboMessageDialog] 1075152
    74442321
    2014-08-13 14:29:58.100
    NULL
    3082519
    SP:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74442369
    2014-08-13 14:29:58.100
    2014-08-13 14:29:58.100
    3082520
    RPC:Completed
    exec [sp_MSdel_dboMessageDialog] 1075152
    74442378
    2014-08-13 14:29:58.097
    2014-08-13 14:29:58.400
    3090751
    RPC:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74450665
    2014-08-13 14:30:17.940
    NULL
    3090796
    SP:Starting
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74450712
    2014-08-13 14:30:17.953
    NULL
    3090844
    SP:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74450760
    2014-08-13 14:30:17.953
    2014-08-13 14:30:17.957
    3090845
    RPC:Completed
    exec [sp_MSupd_dboMessageDialog] default,default,default,default,0,default,'2014-08-13 12:10:56.503',1075152,0x50
    74450761
    2014-08-13 14:30:17.940
    2014-08-13 14:30:17.953
    Correct me if I'm wrong but this seems a bit weird. Why don't I see any INSERT to create the row again after the DELETE?
    For the time being, and since this is a test system, I added the parameter "-SkipErrors 20598" to the Distribution Agent and restarted the agent. The replication started by skipping 20 records with that error and then continuing to work fine, as
    suspected. I will have to verify with the developers and testers to see if all the data is still available.
    Hopefully you will have some great insight into this matter and be able to explain what is happening.
    Cheers!
    DS

  • There was a problem starting c:\users\tom\appData\local\Apps\Apple Computer\xvgtv.dll The specified module could not be found

    I get error on Windows startup. I have iCloud installed as well as other apple software.
    error:
    there was a problem starting c:\users\tom\appData\local\Apps\Apple Computer\xvgtv.dll The specified module could not be found.

    I get error on Windows startup. I have iCloud installed as well as other apple software.
    error:
    there was a problem starting c:\users\tom\appData\local\Apps\Apple Computer\xvgtv.dll The specified module could not be found.

  • TS1702 My problem started after installing smartsync which is supposed to sync my phone with the profilepage photos of my friends in facebook. All my apps crash after using them for awhile. I have remove the smartsync app but my phone still behaves the sa

    My problem started after installing "smartsync app" which is supposed to sync my phone with the profilepage photos of my friends in facebook. All my apps crashed after using them for awhile.While using my apps, they will black out after a little while and the phone returns to the starting page. I have removed the smartsync app but my phone still behaves the same way. At the same time the dates that accompany my messages changed to another language. How can these be rectified?

    Eek.  Sounds like something in the app caused some serious software issues.  You can try a hard reset, but I'd imagine you're probably going to have to do an iTunes restore to get it running right again.

  • When I  update an app it asks for my password (as usual) but now there is no touch keyboard or other way to enter the password. This problem started, I think, after the latest OS update.What's going on?

    When I  update an app it asks for my password (as usual) but now there is no touch keyboard or other way to enter the password. This problem started, I think, after the latest OS update.What's going on?

    I tried a reset and it did the trick.

  • Problem starting database in notebook,

    I installed windows 2000 professional(OS) and installed oracle 9i on it. I have been hibernating my notebook since two weeks, i am facing a problem, when i restart my system, system is unable to start my database unless i restart the listener at services.msc. If anyone has a answer pls help me.
    Thanks in advance
    Mahesh Ragineni

    i have instal tow database orcl,emrep
    when i statr orcl database after shutdown it does not
    start
    SQL> conn sys@orcl
    Enter password: ******************
    Connected.
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORA-12514: TNS:listener does not currently know of
    service requested in connect descriptor
    SQL>You need to login locally using OS authentication to startup the database,
    Make sure ORACLE_SID set correctly.
    sqlplus / as sysdba

  • Starting apps problem, make everything cannot used until it finish. lenovo s920

    before it become problem, my android apps missing "contact number", after try posible .apk , my andriod become another problem
    where my android missing app for "call out" but still can accept "call in". i try to Rom and reset factory with full wipe
    (factory reset) CWM or TWRP and lenovo_s920_to_gfive_g9_beta2_Lovetz.zip .. but it cannot be reset with the pakage
    lenovo_s920_to_gfive_g9_beta2_Lovetz.zip and last the thing i do, i unzip all the lenovo_s920_to_gfive_g9_beta2_Lovetz and save
    to sd card, and i install every thing manual one by one... and finally my mission to bring back "contact number" and "call in
    out" success. and now i have another problem... one of my starting apps (i don khow which apps) never lunch, and it become every
    thing behind cannot be used until it finish loading. this problem make me completely no have idea to solve. i remove the sdcard,
    sim card but the problem apps still loading but never stop.
    any solution...i thing, maybe any something boot factory reset "boot sdcard" like "boot cd/floppy windos"? kill the apps with
    usb?..or any idea

    Kevin,
    Understandably you seem really frustrated.   I can sympathize with your summation of the run around you have experienced but without specifics, it is difficult to arrange assistance on your behalf.
    The battery recall is for safety, and the automated tool querries the batteries to see if specific ones are affected.   It is possible that your batteries may have worn down over time, but not been flagged as inherently unsafe.   If you have a sample of 20 or 40 units, and they were built nearly in sequence then it is possible that they are not affected.
    Serene likely asked you for customer contact and type and serial information for at least one of your systems as required to escalate your case.   I understand it is frustrating to have already provided this elsewhere to the company.
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Java Web Start.app, apparent problems.

    I have been experiencing many small problems during web browsing, etc. and have received terrific help from Barry Hemphill but he is unable to help on Java matters.
    When I open Java Web Start app. I get the following message; "You cannot open Java Web Start.app because it it is damaged or incomplete". This is possibly, at least by the app's. name the cause of my troubles, though I am guessing. Can anyone guide me to where I can download and re-install the app. to see if it does overcome my problems. A typical one of them is happening as I type, the screen characters are lagging heavily behind my two-finger typing.
    Brian Hope
    MacMini Mac OS X (10.4.10)

    Hi Brian, Happy Holidays!
    The Java Web Start software is a component of the Java Runtime Environment (JRE) and is installed with the JRE.
    http://java.com/en/download/faq/java_webstart.xml
    See also...
    http://www.digistamp.com/t3runMac.htm

  • I have been having problems downloading apps with my cellular data. I try installing apps from the app store and when it starts loading it just stays loading for a while but all of a sudden it loads all the way and then it restarts It goes back to waiting

    I have been having problems downloading apps with my cellular data. I try installing apps from the app store and when it starts loading it just stays loading for a while but all of a sudden it loads all the way and then it restarts. It goes back to waiting

    https://discussions.apple.com/message/19584729#19584729

  • Hi. An application me and my friends are having some problems starting is called League of Legends and we want to know more why we cant start the app.

    Hi. An application me and my friends are having some problems starting is called League of Legends and we want to know more why we cant start the app.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for

  • Illustartor CS3 wont open - error message

    Everytime i open illustator, it gets to the the open file page and then immediatley shuts off. i tried disabling all fonts and restarting my computer but with no luck. What do i do?

  • Windows 8 Blue Screen Of Death (BSOD) BAD_POOL_CALLER

    Hi, I have been using windows 8 for the past week and have issues with BSOD appearing at random intervals and over the lat few days more frequently. After performing several rebuilds of the OS and carefully selecting Windows 8 supported applications

  • Multiplex control files in Oracle 10g...

    Hi , the Oracle documentation , in one of its books points out....: 'Once the disk drive is repaired, the damaged control file can be restored using the intact copy of the control file from the other disk and the instance can be restarted'. Is it ach

  • S110 Dual boot Windows 7 and windows xp

    Hello, I have purchased lenovo S110 with out of the box windows 7 and microsoft office starter. I want to install windows xp as dual boot option, can moderator guide me how to achieve it. I have researched a bit and I think I will face issues on the

  • Voip Server

    Hi all,        Is it possible to connect Voip server via blackberry 8300 .       if possible,  How to connect and make calls through it. Any samples... With Regards  Karthik.J