Solved - Client connexion results in ORA-0134 and ORA-27101

Hi,
I have solved the problem, this is what I did:
I issued the command $ps -ef | grep ora
and noticed that orarim appears in lower case in the output.
So I went into listener.ora, sqlnet.ora, tnsnames.ora, .bash_profile and changed all uppercase to lowercase orarim.
Then I restarted lsnrctl.
This was the original message:
I have both errors on the Oracle Linux with 11g RDBMS when trying to connect:
SQL>connect scott@orarim/pwd
But if I omit the oracle_sid I can connect fine.
From the client I get an OK when I run tnsping orarim
I have read ten+ threads about these errors on the web.
It was working until I installed Weblogic.
Message was edited by: JeanParis

Hi,
I have solved the problem, this is what I did:
I issued the command $ps -ef | grep ora
and noticed that orarim appears in lower case in the output.
So I went into listener.ora, sqlnet.ora, tnsnames.ora, .bash_profile and changed all uppercase to lowercase orarim.
Then I restarted lsnrctl.
This was the original message:
I have both errors on the Oracle Linux with 11g RDBMS when trying to connect:
SQL>connect scott@orarim/pwd
But if I omit the oracle_sid I can connect fine.
From the client I get an OK when I run tnsping orarim
I have read ten+ threads about these errors on the web.
It was working until I installed Weblogic.
Message was edited by: JeanParis

Similar Messages

  • During OSD in WINPE the clients loses it's IP Address and fails

    Hello,
    Since 3 weeks we have an issue where the clients are releasing there IP address during OS Deployment, and mostly during downloading the .wim file or during the applying image. (If you try
    for 4 or 5 times it sometime passes and will be successfully deployed)
    The DHCP lease times are set to 24H. I ran a F8 and then i did a ping to the distribution server during the download / applying. What we see is that after and X moment (within 20min still
    in WinPE) the NIC looses its IP address and gets a 169.x.x.x.x.x address. 
    If this happens during Applying Images (before its complete) and you manually do a ipconfig/release and /renew it successfully continues. If it happens during download it off course  stops
    instantly.
    We tested it on several routers and different configurations. All with the same result a failing OSD. We ran SCCM2012 SP1. The WinPE has the latest NIC drivers.
    Greetings

    We almost solved the problem :) Indeed DHCP is the problem. Although the config of both DHCP servers is configured the same with a lease of 24h (deployment vlan) one of the DHCP servers is giving the clients a lease time of 10 minutes. When this lease time
    expired the clients arent automatic renewing the lease and Deployment will fail. 
    DHCP config is renewed and coded with different lease time but still clients get 10min lease. 
    More on Monday :)

  • Trying to connect as sysdba results in ORA-01031

    Database server runs in shared server mode,
    so in tnsnames I have entry for network service
    name with (SERVER = DEDICATED) option to be
    able to connect as sysdba, initialization
    parameter REMOTE_LOGIN_PASSWORDFILE is set to EXCLUSIVE,
    in password file there is one entry for user sys.
    I'm trying to connect with user sys as sysdba,
    but the result is ORA-01031 error.
    Can anybody tell me how can I make it to work?
    Thanks for advise a lot,
    P.

    I have recreated password file,
    but it behaves like before, connecting
    to database from local machine with
    user not in OSDBA or OSOPER group works,
    but from other machine it ends with error.
    I have one more question: When I connect
    from local machine using tnsnames.ora file
    in network service name defined in that file
    I have (SERVER = SHARED)
    and I'm able to connect as sysdba, I thought that
    connect as sysdba is possible only with
    (SERVER = DEDICATED) when database works in
    shared server mode.

  • Client side result set cache

    Hello,
    I try to get the client side result set cache working, but i have no luck :-(
    I'm using Oracle Enterprise Edition 11.2.0.1.0 and as client diver 11.2.0.2.0.
    Executing the query select /*+ result_cache*/ * from p_item via sql plus or toad will generate an nice execution plan with an RESULT CACHE node and the v$result_cache_objects contains some rows.
    After I've check the server side cache works. I want to cache the client side
    My simple Java Application looks like
    private static final String ID = UUID.randomUUID().toString();
    private static final String JDBC_URL = "jdbc:oracle:oci:@server:1521:ORCL";
    private static final String USER = "user";
    private static final String PASSWORD = "password";
    public static void main(String[] args) throws SQLException {
    OracleDataSource ds = new OracleDataSource();
    ds.setImplicitCachingEnabled(true);
    ds.setURL( JDBC_URL );
    ds.setUser( USER );
    ds.setPassword( PASSWORD );
    String sql = "select /*+ result_cache */ /* " + ID + " */ * from p_item d " +
    "where d.i_size = :1";
    for( int i=0; i<100; i++ ) {
    OracleConnection connection = (OracleConnection) ds.getConnection();
    connection.setImplicitCachingEnabled(true);
    connection.setStatementCacheSize(10);
    OraclePreparedStatement stmt = (OraclePreparedStatement) connection.prepareStatement( sql );
    stmt.setLong( 1, 176 );
    ResultSet rs = stmt.executeQuery();
    int count = 0;
    for(; rs.next(); count++ );
    rs.close();
    stmt.close();
    System.out.println( "Execution: " + getExecutions(connection) + " Fetched: " + count );
    connection.close();
    private static int getExecutions( Connection connection ) throws SQLException {
    String sql = "select executions from v$sqlarea where sql_text like ?";
    PreparedStatement stmt = connection.prepareStatement(sql);
    stmt.setString(1, "%" + ID + "%" );
    ResultSet rs = stmt.executeQuery();
    if( rs.next() == false )
    return 0;
    int result = rs.getInt(1);
    if( rs.next() )
    throw new IllegalArgumentException("not unique");
    rs.close();
    stmt.close();
    return result;
    100 times the same query is executed and the statement exection count is incemented every time. I expect just 1 statement execution ( client database roundtrip ) and 99 hits in client result set cache. The view CLIENT_RESULT_CACHE_STATS$ is empty :-(
    I'm using the oracle documentation at http://download.oracle.com/docs/cd/E14072_01/java.112/e10589/instclnt.htm#BABEDHFF and I don't kown why it does't work :-(
    I'm thankful for every tip,
    André Kullmann

    I wanted to post a follow-up to (hopefully) clear up a point of potential confusion. That is, with the OCI Client Result Cache, the results are indeed cached on the client in memory managed by OCI.
    As I mentioned in my previous reply, I am not a JDBC (or Java) expert so there is likely a great deal of improvement that can be made to my little test program. However, it is not intended to be exemplary, didactic code - rather, it's hopefully just enough to illustrate that the caching happens on the client (when things are configured correctly, etc).
    My environment for this exercise is Windows 7 64-bit, Java SE 1.6.0_27 32-bit, Oracle Instant Client 11.2.0.2 32-bit, and Oracle Database 11.2.0.2 64-bit.
    Apologies if this is a messy post, but I wanted to make it as close to copy/paste/verify as possible.
    Here's the test code I used:
    import java.sql.ResultSet;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import oracle.jdbc.pool.OracleDataSource;
    import oracle.jdbc.OracleConnection;
    class OCIResultCache
      public static void main(String args []) throws SQLException
        OracleDataSource ods = null;
        OracleConnection conn = null;
        PreparedStatement stmt = null;
        ResultSet rset = null;
        String sql1 = "select /*+ no_result_cache */ first_name, last_name " +
                      "from hr.employees";
        String sql2 = "select /*+ result_cache */ first_name, last_name " +
                      "from hr.employees";
        int fetchSize = 128;
        long start, end;
        try
          ods = new OracleDataSource();
          ods.setURL("jdbc:oracle:oci:@liverpool:1521:V112");
          ods.setUser("orademo");
          ods.setPassword("orademo");
          conn = (OracleConnection) ods.getConnection();
          conn.setImplicitCachingEnabled(true);
          conn.setStatementCacheSize(20);
          stmt = conn.prepareStatement(sql1);
          stmt.setFetchSize(fetchSize);
          start = System.currentTimeMillis();
          for (int i=0; i < 10000; i++)
            rset = stmt.executeQuery();
            while (rset.next())
            if (rset != null) rset.close();
          end = System.currentTimeMillis();
          if (stmt != null) stmt.close();
          System.out.println();
          System.out.println("Execution time [sql1] = " + (end-start) + " ms.");
          stmt = conn.prepareStatement(sql2);
          stmt.setFetchSize(fetchSize);
          start = System.currentTimeMillis();
          for (int i=0; i < 10000; i++)
            rset = stmt.executeQuery();
            while (rset.next())
            if (rset != null) rset.close();
          end = System.currentTimeMillis();
          if (stmt != null) stmt.close();
          System.out.println();
          System.out.println("Execution time [sql2] = " + (end-start) + " ms.");
          System.out.println();
          System.out.print("Enter to continue...");
          System.console().readLine();
        finally
          if (rset != null) rset.close();
          if (stmt != null) stmt.close();
          if (conn != null) conn.close();
    }In order to show that the results are cached on the client and thus server round-trips are avoided, I generated a 10046 level 12 trace from the database for this session. This was done using the following database logon trigger:
    create or replace trigger logon_trigger
    after logon on database
    begin
      if (user = 'ORADEMO') then
        execute immediate
        'alter session set events ''10046 trace name context forever, level 12''';
      end if;
    end;
    /With that in place I then did some environmental setup and executed the test:
    C:\Projects\Test\Java\OCIResultCache>set ORACLE_HOME=C:\Oracle\instantclient_11_2
    C:\Projects\Test\Java\OCIResultCache>set CLASSPATH=.;%ORACLE_HOME%\ojdbc6.jar
    C:\Projects\Test\Java\OCIResultCache>set PATH=%ORACLE_HOME%\;%PATH%
    C:\Projects\Test\Java\OCIResultCache>java OCIResultCache
    Execution time [sql1] = 1654 ms.
    Execution time [sql2] = 686 ms.
    Enter to continue...This is all on my laptop, so results are not stellar in terms of performance; however, you can see that the portion of the test that uses the OCI client result cache did execute in approximately half of the time as the non-cached portion.
    But, the more compelling data is in the resulting trace file which I ran through the tkprof utility to make it nicely formatted and summarized:
    SQL ID: cqx6mdvs7mqud Plan Hash: 2228653197
    select /*+ no_result_cache */ first_name, last_name
    from
    hr.employees
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute  10000      0.10       0.10          0          0          0           0
    Fetch    10001      0.49       0.54          0      10001          0     1070000
    total    20002      0.60       0.65          0      10001          0     1070000
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 94 
    Number of plan statistics captured: 1
    Rows (1st) Rows (avg) Rows (max)  Row Source Operation
           107        107        107  INDEX FULL SCAN EMP_NAME_IX (cr=2 pr=0 pw=0 time=21 us cost=1 size=1605 card=107)(object id 75241)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                   10001        0.00          0.00
      SQL*Net message from client                 10001        0.00          1.10
    SQL ID: frzmxy93n71ss Plan Hash: 2228653197
    select /*+ result_cache */ first_name, last_name
    from
    hr.employees
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.01          0         11         22           0
    Fetch        2      0.00       0.00          0          0          0         107
    total        4      0.00       0.01          0         11         22         107
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 94 
    Number of plan statistics captured: 1
    Rows (1st) Rows (avg) Rows (max)  Row Source Operation
           107        107        107  RESULT CACHE  0rdkpjr5p74cf0n0cs95ntguh7 (cr=0 pr=0 pw=0 time=12 us)
             0          0          0   INDEX FULL SCAN EMP_NAME_IX (cr=0 pr=0 pw=0 time=0 us cost=1 size=1605 card=107)(object id 75241)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       2        0.00          0.00
      log file sync                                   1        0.00          0.00
      SQL*Net message from client                     2        1.13          1.13The key differences here are the execute, fetch, and SQL*Net message values. Using the client-side cache, the values drop dramatically due to getting the results from client memory rather than round-trips to the server.
    Of course, corrections, clarifications, etc. welcome and so on...
    Regards,
    Mark

  • Error: ora-01034 and ora-27101

    I encountered a problem,and I don't know how this happened.when i logn in ,it said these:
    error:
    ORA-01034:ORACLE not available
    ORA-27101:shared memory realm does not exist
    then I found the alert file :
    Instance terminated by USER, pid = 6724
    ORA-1092 signalled during: ALTER DATABASE OPEN...
    Fri Mar 22 16:49:08 2013
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =48
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 400
    __shared_pool_size = 83886080
    __large_pool_size = 4194304
    __java_pool_size = 4194304
    __streams_pool_size = 0
    sga_target = 293601280
    control_files = F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\CONTROL01.CTL, F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\CONTROL02.CTL, F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 192937984
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = F:\oracle\product\10.2.0\db_1/flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    corruptedrollback_segments= SYSSMU12$, SYSSMU13$, SYSSMU14$, SYSSMU15$, SYSSMU16$, SYSSMU17$, SYSSMU18$, SYSSMU19$, SYSSMU20$, SYSSMU11$
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=HNDL3DDBXDB)
    job_queue_processes = 10
    audit_file_dest = F:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\HNDL3DDB\ADUMP
    background_dump_dest = F:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\HNDL3DDB\BDUMP
    user_dump_dest = F:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\HNDL3DDB\UDUMP
    core_dump_dest = F:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\HNDL3DDB\CDUMP
    db_name = HNDL3DDB
    open_cursors = 1000
    pga_aggregate_target = 96468992
    PMON started with pid=2, OS id=6264
    PSP0 started with pid=3, OS id=5848
    MMAN started with pid=4, OS id=2280
    DBW0 started with pid=5, OS id=7056
    LGWR started with pid=6, OS id=3752
    CKPT started with pid=7, OS id=5664
    SMON started with pid=8, OS id=5492
    RECO started with pid=9, OS id=5536
    CJQ0 started with pid=10, OS id=1868
    MMON started with pid=11, OS id=620
    MMNL started with pid=12, OS id=5708
    Fri Mar 22 16:49:08 2013
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Fri Mar 22 16:49:09 2013
    ALTER DATABASE MOUNT
    Fri Mar 22 16:49:13 2013
    Setting recovery target incarnation to 2
    Fri Mar 22 16:49:13 2013
    Successful mount of redo thread 1, with mount id 5156229
    Fri Mar 22 16:49:13 2013
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Mar 22 16:49:14 2013
    ALTER DATABASE OPEN
    Fri Mar 22 16:49:14 2013
    Beginning crash recovery of 1 threads
    parallel recovery started with 3 processes
    Fri Mar 22 16:49:14 2013
    Started redo scan
    Fri Mar 22 16:49:14 2013
    Completed redo scan
    1 redo blocks read, 0 data blocks need recovery
    Fri Mar 22 16:49:14 2013
    Started redo application at
    Thread 1: logseq 209, block 2, scn 5166454
    Fri Mar 22 16:49:14 2013
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 209 Reading mem 0
    Mem# 0 errs 0: F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\REDO01.LOG
    Fri Mar 22 16:49:14 2013
    Completed redo application
    Fri Mar 22 16:49:14 2013
    Completed crash recovery at
    Thread 1: logseq 209, block 3, scn 5186456
    0 data blocks read, 0 data blocks written, 1 redo blocks read
    Fri Mar 22 16:49:14 2013
    Thread 1 advanced to log sequence 210
    Thread 1 opened at log sequence 210
    Current log# 2 seq# 210 mem# 0: F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\REDO02.LOG
    Successful open of redo thread 1
    Fri Mar 22 16:49:14 2013
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Mar 22 16:49:14 2013
    SMON: enabling cache recovery
    Fri Mar 22 16:49:14 2013
    Errors in file f:\oracle\product\10.2.0\db_1\admin\hndl3ddb\udump\hndl3ddb_ora_4184.trc:
    ORA-00704: bootstrap process failure
    ORA-00604: error occurred at recursive SQL level 3
    ORA-01578: ORACLE data block corrupter(file #1,block #9)
    ORA-01110: data file 1: 'F:\ORACLE\PRODUCT\10.2.0\ORADATA\HNDL3DDB\SYSTEM01.DBF'
    Could someone help me solve this problem??
    thanks so much!!!!!!

    Hi,
    Please run the following commands and check which objects are corrupted in the database.
    RMAN> backup validate check logical database
    SQL > SELECT e.owner, e.segment_type, e.segment_name, e.partition_name, c.file#
    , greatest(e.block_id, c.block#) corr_start_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1)
    - greatest(e.block_id, c.block#) + 1 blocks_corrupted
    , null description
    FROM dba_extents e, v$database_block_corruption c
    WHERE e.file_id = c.file#
    AND e.block_id <= c.block# + c.blocks - 1
    AND e.block_id + e.blocks - 1 >= c.block#
    UNION
    SELECT s.owner, s.segment_type, s.segment_name, s.partition_name, c.file#
    , header_block corr_start_block#
    , header_block corr_end_block#
    , 1 blocks_corrupted
    , 'Segment Header' description
    FROM dba_segments s, v$database_block_corruption c
    WHERE s.header_file = c.file#
    AND s.header_block between c.block# and c.block# + c.blocks - 1
    UNION
    SELECT null owner, null segment_type, null segment_name, null partition_name, c.file#
    , greatest(f.block_id, c.block#) corr_start_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1)
    - greatest(f.block_id, c.block#) + 1 blocks_corrupted
    , 'Free Block' description
    FROM dba_free_space f, v$database_block_corruption c
    WHERE f.file_id = c.file#
    AND f.block_id <= c.block# + c.blocks - 1
    AND f.block_id + f.blocks - 1 >= c.block#
    order by file#, corr_start_block#;
    Regards,
    Jey

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    I am looking for a map app that will allow me to place pins where my clients offices are on a map and keep them save every time I open the app. Does anyone out there know of an app that will do this?

    "Motion 5" is your friend.
    Michael Wohl has a nice 15 video series (free) about Motion 5 at http://www.macprovideo.com/tutorial/motion5101-overview-and-workflow-guide (right side)
    This is a "teaser" series to sell his tutorials but it is really good. Just saw it yesterday for the first time.
    While all you want is just to place pins, realize that Motion has so much more. All kinds of effects and they can be really customized. Maybe put their street address, contact name, and phone number by the pin?
    Motion 5: cheap at $49.99 (just got my download two days ago)
    Motion 5: Support Community athttps://discussions.apple.com/community/professional_applications/motion_5
    If you're using the map for, say, deliveries, and use an iPad, what you could do is have a general map of the area imported into Motion, create the pins and whatever, then save (share?) it to the iPad.
    Disclaimer: I have virtually no relationship with anything connected with this tutorial product, developer, or anything.

  • Mac won't update software or access iTunes shop. Message comes up with 'not connected to the net. Check connections' error. I still have internet access. Changed my Apple ID but no result. Repaired permissions and re-installed operating system.

    Mac won't update software or access iTunes shop. Message comes up with 'not connected to the net. Check connections' error. I still have internet access. Changed my Apple ID but no result. Repaired permissions and re-installed operating system.

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Client Copy in BI 7.0 and ERP 6.0

    Hi
    I have done a system copy of both the BI system and it's source ERP system and am following the post copy steps to ensure that the connectivity between the two is maintained.  However before I run BDLS to change the logical system names I would like to change the client numbers on both the BW and ERP client.  Does anyone know what the implications of doing a client copy in both systems is and then running BDLS for these logical system names?  Has anyone tried this and was it successful?  Can you do a successful client copy of BI?
    Points awarded.
    Thanks
    Leigh

    Hello,
    Have a look at these OSS
    SAP Note 446294 CC INFO: Logical system name and client copy
    SAP Note 793717 Client copy into the BW client in Netweaver/mySAP ERP
    SAP Note 103228 Naming the logical system
    SAP Note 886102 System Landscape Copy for SAP BW and NW BI
    SAP Note 307018 Convert partner name w.respct to logcl systm name
    SAP Note 325525 Copying and renaming systems in a BW environment
    SAP Note 325470 Activities after client copy in BW source systems
    SAP Note 369758 BDLS: New functions and better performance
    SAP Note 1148403 70SP18: BDLS after early replication
    SAP Note 932032 BDLS: specific conversion for large tables
    SAP Note 1059278 70SP15: Error in transaction BDLS
    Also see,
    Ex[Execute conversion of logical system names (BDLS) in short time and in parallel - Intermediate|Execute conversion of logical system names (BDLS) in short time and in parallel - Intermediate]
    SAP Note 121163 BDLS: Converting logical system names
    SAP Note 931029 Transformations are not taken into account (BDLS)
    SAP Note 187297 Changing the logical system name in table T000
    Thanks
    Chandran

  • Every time I try to export or publish my project it result in a error and closing de program, any idea ???

    Every time I try to export or publish my project it result in a error and closing de program, any idea ???

    Hi,
    That link takes you to the Facebook for iPhone app.
    You have posted in the Mac App Store for Mac OS X. (I know it's somewhat confusing especially with the new forum format).
    Try deleting the Facebook app from the iPhone by pressing down on the app on the iPhone until it jiggles then tap the circle with an x in it. Then tap the Home button to stop all the apps from jiggling.
    Now tap the App Store icon and and re download the Facebook app again.
    If that doesn't make a difference, post over in the iPhone Discussions forum at this link.
    https://discussions.apple.com/community/iphone/using_iphone
    Carolyn 

  • SCCM pushing SP1 CU2 pushing client version 5.00.7804.1000 and not 5.00.7804.1300

    Im working to clean up an SCCM install and found SCCM SP1 CU2 is pushing client version 5.00.7804.1000 and not 5.00.7804.1300. The list I have states CU2 client is 5.00.7804.1300. I did find WEBDAV not installed so I installed and configured that.
    MP looks healthy so far as well.
    Anyone run into this and or have troubleshooting/resolution steps?
    tconners

    As Mike said, unless you've done something specific, you are seeing the correct and expected behavior.
    You need to either add the msp for the client CU2 update to your push properties or the command-line of whatever method you are using to deploy the client or simply let SCUP or Software Distribution update them to CU2 after they are installed. There's no real
    harm in letting the update happen after deployment and no true gain in forcing it during deployment.
    Jason | http://blog.configmgrftw.com

  • How to get the query result of improvement (Before and After ) using sql de

    how to get the query result of improvement (Before and After ) using sql developer.

    Check
    http://www.oracle.com/technetwork/articles/sql/exploring-sql-developer-1637307.html

  • ORA-27101: shared memory realm does not exist and ORA-01139: RESETLOGS

    HI ALL,
    After the oracle has installed on a solaries server successfully, i am unable to login into oracle database.
    Below are the errors messages :
    1) ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    SVR4 Error: 2: No such file or directory
    2) Media recovery complete.
    alter database open resetlogs
    ERROR at line 1:
    ORA-01139: RESETLOGS option only valid after an incomplete database recovery.
    and When i try to login into oracle as root .
    this is the error :
    sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri Feb 12 15:52:49 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    ld.so.1: oracle: fatal: libskgxp10.so: open failed: No such file or directory
    ERROR:
    ORA-12547: TNS:lost contact
    my Operating system details :
    SunOS Blade3-Chassis2 5.10 Generic_142900-03 sun4v sparc SUNW,Netra-CP3060
    Anyone please help me here. waiting for your reply.
    Below are the ORACLE_SID Details :
    1) echo $ORACLE_SID ----- > ems
    2)ps -eaf | grep smon -------> ora_smon_ems
    do you need any data?
    Edited by: user8959150 on Feb 11, 2010 7:19 PM

    Hi
    We mostly receive this error message ( ORA-27101: shared memory realm does not exist and ORA-01139)
    When our SGA_MAX_SIZE is greater than 1.7 G.b on
    You again configure your sga size
    and sga_max_size paramete will not greater than 1.7 G.b
    Hope your database will work correctly.
    for test purpose you set all your init.ora parameter
    db_cache_size=512m
    db_keep_cache_size=64m
    db_recycle_cache_size=16m
    java_pool_size=8m
    large_pool_size=16m
    shared_pool_size=256m
    shared_pool_reserved_size=64m
    sga_max_size=1600m
    sga_max_size will not be grater than combination of of db_cache_size db_keep_cache_size,db_recycle_cache_sizejava_pool_size+share_pool_size+share_pool_reserved_size
    Hope it will work fine.
    Regard
    Abdul Hameed Malik
    [email protected]

  • Different Risk Analysis Results with 10.0 and 10.1

    Hello,
    I do not understand why I get different results with 10.0 and 10.1. Exactly the same ruleset is applied!
    Definition in 10.0 and 10.1:
    Analyzed Role (which definitely contains the SOD):
    Version GRC 10.0 finds the SOD S_FI14 and displays it. In 10.1 nothing is displayed...Any ideas what's the problem?
    Regards
    Peter

    We had similar issues with 10 and 10.1.
    We applied an SAP Note about logical groups and the ruleset, it did not work.
    What did work:
    When performing Risk Analysis, remove the Ruleset selection criteria (use the minus button).

  • I dropped my Iphone 5 which resulted in it shattering and the screen was still on but it was black with only a white line through it so I couldnt access the phone however I switched over to my Droid and now I cannot send or receive messages?

    I dropped my Iphone 5 which resulted in it shattering and the screen was still on but it was black with only a white line through it so I couldnt access the phone however I switched over to my Droid and now I cannot send or receive messages and I cant turn off imessage because I cant see anything on the screen.  Help?

    Then the bottom of the support document states that if you do not have access to the device (which unfortunately because of the screen issue you do not) to contact Apple Care. That is what you need to do.

Maybe you are looking for