Oracle 9i Lite - PPC and XP

Does anyone know whether a 9i Lite .odb file created on a Windows XP machine can then be used by 9i Lite on a Pocket PC (2002)? More specifically, I'd like to create and populate the database on a Windows XP machine and then Actice Sync or FTP the file onto multiple Pocket PCs. Once the databases are local on the PPC devices a small number of apps written in eVB (or something else) will then query and change the data.
Jon

Jon,
The .odb files you created should be compatible on both platforms, as long as they're creating using the same version of Oracle Lite.
Please let me know if you have additional questions.
- Junius

Similar Messages

  • Oracle 8i Lite - OO4O and other Questions

    1.) Can OO4O (Oracle Objects for OLE) be used with the Oracle 8i Lite database ?
    2.) Does Oracle 8i Lite operate as a "client/server" database ?
    3.) Is it possible to have multi-user access to Oracle 8i Lite ?
    4.) Is there documentation somewhere that lists all of the limitations with 8i Lite as compared to 8i ?
    We are in the planning stages of a partial mobile system, and want to know how much difference in development efforts for the 2 platforms (Oracle 8i on Win 2000 server and Oracle 8i Lite on NT/98/95 Laptops).
    Any information on Oracle 8i Lite would be appreciated. -- Especially need an answer to question 1 right now.
    Thanks,
    Paula

    Hi,
    I am qouting below from the oracle 8i Lite documentation which says it supports triggers . Please clarify.
    Oracle Lite DBMS
    Oracle Lite DBMS is a lightweight (50KB - 750KB), Java enabled database designed from the ground up for laptops, handheld computers, PDAs and smartphones. It supports industry standard ODBC, JDBC, SQLJ, and Java Stored Procedures and Triggers. It provides a streaming fast "C" interface, OKAPI, to its object kernel. It also supports Java Access Classes, JAC, a fast and easy way to make Java Objects persistent. Oracle Lite DBMS now supports all popular mobile platforms, including Palm OS, EPOC, and Windows CE, letting you deploy enterprise applications on virtually any mobile device.
    Regards
    null

  • Oracle 10g Lite with ADF/BC4J Application(Offline access in Mobile )

    Hi All,
    We have the following requirement from one of our client.
    Customer Company has R12 Apps instance(which is having 10g Database APPSDB). The users will come in the morning
    and connect to the System(NEWSYSTEM) to download their daily worksheet(resides in APPSDB) to their Mobile Devices
    (Windows XP - http://www.keenzo.com/zoom.asp?zoom=3830134) and then disconnect from the system. The download of data
    should start after login into their Mobile Device Custom Application So that only their worksheet will be downloaded
    to their Mobile Device DB.
    Then they will goto their fields and review their daily worksheet in the Mobile Device application(NEW APPLICATION)
    in offline mode. And update in the application with their findings, which should be stored in the Mobile Device database(MOBILEDB).
    In the evening the uses will come and connect to the system(NEWSYSTEM) and login into their Mobile Application and
    start the upload process, then the updated data from their Mobile Database will be uploaded into APPSDB via the NEWSYSTEM.
    I checked the links, http://www.oracle.com/technology/products/lite/index.html and http://lite.us.oracle.com and I have
    got some understanding about Oracle 10g Lite. For the above requirement we are proposing the NEWSYSTEM as Oracle 10g Lite Server
    and the NEW APPLICATION as ADF/BC4J which can run in their Mobile Devices(work offline and then sync with DB).
    I have the following questions.
    1) The above proposing system is feasible?
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    c) To get my custom application in My Mobile Device, first I have to deploy the application
    in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    I am new to Oracle 10g Lite, correct me if any of my understanding is wrong.
    If you have any comments in the approach please add it.
    Thanks in advance.
    With Regards,
    Kali.

    1) The above proposing system is feasible?
    perfecly feasible, and actually a reasonably standard use of oracle lite
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    Actually two different questions here. The application code that runs on the client device can be written in any thing that will run on that type of device, and is capable of using the APIs to connect to the local database, and the other functionality like synchronisation. From the forum there look to be VB, C, java users out there (an i even believe if you wanted to, you could use forms). Main decision regarding the Platform for the application code development tends to be whatever you have the skills in.
    In terms of the sync process only downloading a particular users worksheet, this would be defined when you define the snapshots of the database tables you want to download, rather than the sync login process itself.
    For example - you have a table WORKSHEETS on the server that you want to download, it has a column EMP_NO which is the employee identifier. You would define the selection for the snapshot as
    select * from WORKSHEETS where EMP_NO=:emp_no (note the bind variable)
    when you then add users to the oracle lite application (actually the database), then you will have a parameter called EMP_NO to define with the employee number for that particular user, and this will be used automatically as the bind variable in the download.
    NOTE subsetting in this way does not need to be direct, for example things like
    select * from TASKS where id in (select task_id from user_tasks where emp_no=:emp_no) is perfectly valid
    NOTE when reading the forum and documentation, be careful of the word application. There are actually two different things to be developed, both normally called 'application'
    Within oracle lite you create an application with publication items, scripts, sequences etc. and then subscribe your users to this application. The application in this context is actually the database and synchronisation management ONLY (you can include files and code for download)
    The second application is your runtime code that has a user interface, functionality, processing and validation. This is written in some development platform, and accesses the database created above for select, insert, update etc.
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    YES this goes on the app server and installs a repository schema MOBILEADMIN within your database
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    YES - once the server is set up, this is downloaded and set up by accessing the <server url>/webtogo/setup
    c) To get my custom application in My Mobile Device, first I have to deploy the application in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    steps in outline are
    1) install server
    2) develop the oracle lite application (ie: database) and publish this to the mobile server (can use the development kit or java APIs for these two steps
    3) add a user with the relevant subsetting parameters
    4) set up oracle lite win32 client on the laptop from the server download
    5) synchronise using the msync utility on the client to create the databases and odbc entries
    6) develop your application code using the client database
    7) during development, then changes to database structure would be via changes and re-publish of the oracle lite application, followed by a sync to update the client database
    8) once all development is complete, the runtime application code can be bundled up into the oracle lite application if you want, and then the initial sync for live users will download the database and application code.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    You can set up a standalone server on the laptop, but better to do this on a development app server so you can use the main server development database as the data souce for the snapshot definitions (pretty easy install). there are conflicts if you try and put the oracle lite client and the mobile development kit on the same machine, but if you are familiar with java, the API development is fairly straightforward to use (i have developed applications in this, and i know only the basics of java) you do not need the MDK
    Basic for a POC i would say is to
    1) set up mobile server on development
    2) define a simple oracle ite application on two server tables. one has select * from table, and the other has select * from table where .... including bind variable. at this stage use complete refresh as the mode for simplicity
    3) publish the application, create user and define the subsetting variable
    4) set up mobile client and synchronise user. use the msql utility to interrogate the database and check the content, and do some updates 9standards SQL syntax)
    5) create simple appliaction code to conect to and read the database on the client
    6) do a sync after the updates above and check they appear in the server
    The above should be reasonably quick and proves
    a) ability to define the data you want to be sent to the users
    b) ability to create an app to manage the database running on the client device in you preferred software platform
    c) data download and upload
    after this basic POC, you can extend into defining fast refreshes to improve the efficiency of the sync process, managing the MGP process, developing a more comprehensive database and application etc. If you have complex joins between server table, you may also want to look at creating views to denormalise data and use these as the basis for the snapshots

  • Database Lite License and App Tutorial

    Hello,
    I'm looking for information regarding oracle database lite licensing and if any one could provide me with demo/tutorial on an application built using oracle jdev with ADF for mobile that uses oracle lite.
    Currently I have developed a demo mobile browser application (using oracle ADF) that does not use oracle lite and works only in connected mode. Any documentation on how to go about with oracle lite and work on offline mode/ synchronization would help me.
    I have a fair idea on licenses, Please correct me if I'm wrong or require any other,
    Oracle Database Enterprise or Standard Edition,
    Oracle Mobile Server,
    Oracle Weblogic Server,
    ADF Runtime licenses
    Greatly appreciate your input.
    Thanks and Regards

    Hi,
    Related to Oracle Lite you need to license:
    - the Oracle Lite Mobile Server
    - the Oracle Lite client (for each device)
    If you want to have an aproach check any online store of Oracle, but anyway you will have to contact an Oracle Partner for licensing, discounts, etc... if your partner know about mobile ;-)
    https://shop.oracle.com/pls/ostore/f?p=ostore:product:4500444252482991::NO:RP,3:P3_LPI:4509478177681805719950
    https://shop.oracle.com/pls/ostore/f?p=ostore:product:4500444252482991::NO:RP,3:P3_LPI:4509426259321805719944
    I hope it helps you
    Regards,
    T.

  • XML and Oracle 8i Lite

    Hi Wizards
    I'm in an endeavour to do the following things -
    1.Generate XML output from Oracle 8i Lite database
    2.Modify the XML and update the database taking the modified XML.
    My java platform is JDK 1.2. I've used the XML SQL Utility for Java, and in doing so i've been successful with the 1st step. I've used the Oracle 8.1.6SDK JDBC Driver which is compatible with JDK 2.The code fragment is like the following -
    import java.io.*;
    import java.sql.*;
    import java.math.*;
    import oracle.xml.sql.query.*;
    import oracle.jdbc.*;
    import oracle.jdbc.driver.*;
    public class orasql1
    public static void main(String args[]) throws SQLException
    Connection conn = null;
    String tabName = "emp";
    try {
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:POlite", "SYSTEM", "manager");
    catch (Exception e) {
    System.out.println("Oracle Connection error\t:");
    System.out.println(e);
    System.exit(0);
    OracleXMLQuery qry = new OracleXMLQuery(conn, "select * from " + tabName);
    qry.setRowsetTag("SCHEMADOC_1");
    qry.setRowTag("EMPLOYEE");
    qry.setStyleSheet("emp.xsl");
    String xmlString = qry.getXMLString(true);
    conn.close();
    try {
    File output = new File("emp.xml");
    FileWriter xmlFile = new FileWriter(output);
    xmlFile.write(xmlString,0,xmlString.length());
    xmlFile.close();
    catch (Exception e) {
    System.out.println("Output file error\t:");
    System.out.println(e);
    System.exit(0);
    I am putting some sample code for step 2 in the following section -
    import oracle.xml.sql.dml.*;
    import java.sql.*;
    import oracle.jdbc.driver.*;
    import oracle.jdbc.*;
    import java.net.*;
    public class orasql2
    public static void main(String args[]) throws SQLException
    Connection conn = null;
    String tabName = "emp";
    String fileName = "emp.xml";
    try {
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:POlite", "SYSTEM", "manager");
    catch (Exception e) {
    System.out.println("An error has occurred.");
    System.out.println("Please check your CLASSPATH variable..");
    System.out.println(e);
    System.exit(0);
    OracleXMLSave save = new OracleXMLSave(conn, tabName);
    URL url = save.createURL(fileName);
    save.setRowTag("SCHEMADOC_1");
    int rowCount = save.insertXML(url);
    System.out.println("Successfully inserted "+rowCount+" rows into "+tabName);
    conn.close();
    Compiling the above code is fine, no errors! But while running the application I get the error -
    Exception in thread "main" oracle.xml.sql.OracleXMLSQLException: java.lang.Class
    CastException: oracle.lite.poljdbc.OracleStatement
    at oracle.xml.sql.dml.OracleXMLSave.insertXML(OracleXMLSave.java:345)
    at oracle.xml.sql.dml.OracleXMLSave.insertXML(OracleXMLSave.java:248)
    at orasql2.main(orasql2.java:27)
    My question is whether this thing can be done at all using Oracle 8i Lite? If so then how?
    Waiting for ur advices.
    Biplab
    (An Indian, but at present in Houston, Texas)

    It looks like be a classpath issue. Would you check with the class name.

  • PL/SQL and Forms executable in Oracle 8i Lite ?

    I've got 2 basic and important questions:
    1.) Is it possible to store procedures with PL/SQL in a Oracle 8i Lite Database(Operating System Windows 2000)
    2.) Are the normal Forms 6i - Applications executable on a Oracle 8i Lite Database.
    (Operating System Windows 2000)
    Regards
    Steffen

    Regardless of which path you want to take, in order to get the OCP certification in either the DBA or PL/SQL developer track, you must first obtain the respective OCA certification for that track. I'm assuming that since you are still undecided in which path to take that you haven't started working on either yet. If you look at the pages for the OCA DBA and OCA PL/SQL Developer certs and what is required for each, you'll see that the first block of tests for either certification (the SQL based exams) has the same options (1Z0-007, 1Z0-047, 1Z0-051) and passing one of those SQL based exams gives credit towards obtaining both OCA certifications. That might be a good place to start.
    Doing one of these tests first might give you some extra time to decide which track you want to pursue. But as Justin said, it really depends on what you do (or plan on doing) in your career as to which path might be more beneficial for you.
    As for the OCM level stuff, I wouldn't even think about it until you get the OCP. One step at a time... Same with OCP before OCA. That being said, my suggestions are just that, suggestions. You're free to take any exams/courses in any order, but you won't be able to obtain the certs until you have completed the requirements for each.

  • Sequencing and Trigger on Oracle 9i lite database

    We created a schema (TESTSCHEMA) on Oracle 8.1.7 Enterprise edition and have a created a trigger which will use the sequence object to generate primary key for the table (TEST_TABLE)
    Sequence creation:
    CREATE SEQUENCE TESTSCHEMA.TEST_TABLE_SEQUENCE START WITH 6000 INCREMENT BY 1 MINVALUE 6000 MAXVALUE 6999 NOCACHE NOCYCLE NOORDER ;
    Trigger creation:
    CREATE OR REPLACE TRIGGER TEST_TABLE INSERT BEFORE INSERT ON TEST_TABLE FOR EACH ROW
    DECLARE
    pkValue NUMBER;
    BEGIN
    pkValue := 0;
    Select TEST_TABLE_SEQUENCE.NextVal into pkValue from dual;
    :NEW.TEST_KEY := pkValue;
    END TEST_TABLE_INSERT;
    We have created a snapshot of the schema on mobile server, synchronized the data with the client (Win32 for testing purpose).
    The trigger works fine on the server, but when I run the same query on the lite database with msql it gives me an error:
    [POL-3221] null key in primary index
    I was wondering if Sequence generation and Triggers are supported on Oracle 9i lite database ? Or am I missing out something ??
    Any information/ help is appreaciated
    Thanks
    Neeraj

    You can't use SAVEPOINT / ROLLBACK TO SAVEPOINT statements in the database trigger:
    ORA-04092: cannot SET SAVEPOINT in a trigger
    ORA-04092: cannot ROLLBACK in a trigger
    I am not sure what you need exactly, but you can try this:
    Simulating ROLLBACK TO SAVEPOINT Behavior in a Database Trigger
    http://www.quest-pipelines.com/pipelines/plsql/tips02.htm#JUNE
    Regards,
    Zlatko Sirotic

  • Oracle 8i Lite Synchronizatoin Problem--Very Crucial and Urgent

    Currently,we are using Oracle 8i lite Version Release 4.0.1 in
    our project.
    Following is the problem we are facing during Web-To-Go
    Synchronization.
    We have published about 200 snapshots of tables on the Web-to-go
    server.
    After Installing the Web-to-Go Client,
    the first time we went Offline, both the webtogo.odb and the
    user odb got downloaded to the client's machine.
    the size of user odb was about 10.7 MB containing 200
    snapshots,without any data and the application about 15 MB.
    We checked up the odb using plus80 and verified that all the
    tables have been created(200 snapshots+200 snapshot logs).
    Once we went Online , a memory/application error (illegal
    operation,unable to access memory) was displayed.The m1 file
    also remained in the client's machine.
    Basically the synchronization fails from client to server.
    Everytime the synchronization is fine,if the odb needs to be
    created freshly,but once created and synchronized,the same error
    is displayed.
    We tried publishing with a reduced no of tables,and it went on
    fine with both offline and online up to a size 8.28MB,with
    about 152 tables.
    An increase of even 10 KB by an addition of 2 more tables,gives
    out the same error.
    The limit on the no of snapshots is specified as 256 per refresh
    group.
    We are using only 200 as of now and that should be ok.
    Please let us know the possible reasons for such kind of a
    problem.
    Let us know in case of any other clarification regarding the
    problem.
    Is there any limitation or requirement at the client site,w.rt
    memory?
    Pls Help
    Meena.

    Sanjay Kumar M.C. (guest) wrote:
    : Hi,
    : I had downloaded Oracle 8i Lite for NT (approx. 105 MB),
    zip
    : files data around 3 times and each time I get the error
    message
    : that the zip archive is corrupted . Is it the problem with the
    : archive at the Oracle site.
    : Can anybody help me to get the installable data set?
    : Regards
    : Sanjay
    Hi
    I experienced the same problem.
    I have downloaded the file segments for oracle 8iLite and had
    run the batch file.
    And it worked.
    Thanks!
    null

  • Oracle 8i lite and palm pilots

    So has Anyone been able to get Oracle 8i Lite to work with a Palm Pilot? I've been browing through some of the forums on 8i Lite and some form apps like Satellite Forms and it doesn't seem like anyone has had much success.

    We haven't tried 8i Lite on a palmtop. But we are trying to use it over the Internet and we are having some problems. Have you used 8i Lite over the Internet?!?
    Thanks..

  • Oracle 8i Lite and Palm, Windows CE and EPOC

    This may be a simple question to developers (which I am not), but we have a client who is seeking advice regarding the use of Palm Pilots, Psion or similar devices for field recording of data.
    Their database is Oracle 7.3.4 (soon to be upgraded to 8) with development done in Forms 5. I understand that Oracle 8i Lite enables a database of this vintage to be used in conjunction with the handhelds, but I do not understand the process.
    Is Oracle 8i Lite loaded onto the handheld? Or is it used to convert the required tables and forms into cut down versions for the limited use by the smaller device?
    What is the role of the host PC for the smaller devices?
    I guess - how does it work in layman's terms.
    I hope someone can help.
    Thanks.

    We haven't tried 8i Lite on a palmtop. But we are trying to use it over the Internet and we are having some problems. Have you used 8i Lite over the Internet?!?
    Thanks..

  • Oracle 8i Lite and Triggers

    In Oracle 8i Lite I can't find the data dictionary view of triggers (e.g.: all_triggers, etc.). I can't create triggers. Are triggers available in Oracle 8i Lite?

    Hi,
    I am qouting below from the oracle 8i Lite documentation which says it supports triggers . Please clarify.
    Oracle Lite DBMS
    Oracle Lite DBMS is a lightweight (50KB - 750KB), Java enabled database designed from the ground up for laptops, handheld computers, PDAs and smartphones. It supports industry standard ODBC, JDBC, SQLJ, and Java Stored Procedures and Triggers. It provides a streaming fast "C" interface, OKAPI, to its object kernel. It also supports Java Access Classes, JAC, a fast and easy way to make Java Objects persistent. Oracle Lite DBMS now supports all popular mobile platforms, including Palm OS, EPOC, and Windows CE, letting you deploy enterprise applications on virtually any mobile device.
    Regards
    null

  • Any difference in the dbms and jdbc drivers btw oracle 8i lite and 9i lite

    Is there any significant difference between oracle 8i lite and oracle 9i lite in terms of database and jdbc drivers?
    If not, it may be better off using oracle8i.

    According to Oracle , 9i lite is more powerful than 8i Lite.
    one thing, 8i Lite is not certified for windows 2000.
    jothi

  • Difference between Oracle 8i SQL Standard and the 9i Lite version

    Hi,
    I was wondering if anybody could inform me of the differences that occur between the full Oracle 8i version and the current Oracle 9i Lite version in respect of the SQL they both use.
    Would the the way temporary tables are created and managed on the lite version be the same as that on the full version?
    Would the SQL syntax also be the same between the two?
    Any feedback on this would be great.
    Thanks
    Stephen

    > 1)Can anyone tell me difference between oracle8i
    sql engine and 9i sql engine.
    They are different versions.
    If you have been expecting a list of differences and enhancements and new product features... forget it. It will take several pages to list. Rather refer to the 9i product feature sheet.
    > 2)Does oracle 9i uses the index defaultly if any
    primary key is there in table
    Huh? Oracle will use an index if it determines that it costs less to use that index to get to the data, than not using an index.

  • Oracle 9i Lite and Satellite Forms on the Palm

    I would like to use Oracle 9i Lite 5.0.1with Satellite Forms EE 4.1 on the Palm
    The docmentation from each company refers to the other company's documentation and no instructions seem to
    exist. I am begining to suspect that to abilty to use Satellite Forms and Oracle Lite on the Palm does not actually
    exist and that one must develop applications in C using Code Warrior or other tools.
    I would like to use a Satellite Forms application on the Palm running with the RDK to access and store tables
    stored in an Oracle Lite database on the Palm. I would then use the MSYNC to move data from the palm to
    my Oracle 8.1.7 database server
    Satellite Forms appears to store each of its tables as a separate pdb but oracle uses a single pdb for a database
    containing multiple tables. There is a check box for Oracle compatible tables but not method to associate
    satellite forms tables with an Oracle Lite database except for a link to an ODBC database. The Oracle ODBC drivers
    point either to the Oracle database server or to an Oracle Lite database on a PC but not on a Palm.
    I can move Satelittle Forms tables from the Palm to Oracle 8.1.7 using ODBC on the PC when I do a Palm Hot Sync
    using the Satellite Form conduit
    I can move Oracle tables from the Palm to 8.1.7 using MSYNC, the Oracle Mobile Server, and the Oracle Lite
    http conduit
    I do not know how to move Satellite Forms tables on the Palm to Oracle Lite tables on the Palm.
    The only way to use Satellite Forms appears to be to move Satellite Forms tables on the Palm to Oracle Lite tables
    on the PC and then use Oracle Lite Msync on the PC to move the data to the Oracle server. This seems to have no
    advantage over going from Satellite Forms directly to the Oracle Server via ODBC
    Does anyone have any additional information about current or future capabilities. There may have been something that
    worked with older versions of Oracle 8iLite 4.0 and Satellite Forms 3.5, but I do not see anything that works now

    According to Metalink Note:207303.1 - Client / Server / Interoperability Support Between Different Oracle Versions you shouldn't have problems, as long as your 9i Clients are at least 9.2.0.4.

  • Oracle 9i Lite on Win98 and EPOC (Psion 5mx)

    Hi,
    I've tried several times to setup up Oracle 9i lite on my Psion
    5mx.
    Obviously there are several new files and new icons. But
    I experience problems
    1/when I try to launch OKDemo, I have a not found message.
    2/When I use MySQL and create a new DB, I have a Kern-exec level
    3 error.
    3/When I try msync, I have a User level 23 error
    4/When I launch aptdata, I've a not supported error message.
    I still don't understand how to set up the desktop (Win98se) as
    well.
    Thanks for advice.

    I use this manual to install over suse 8.2 professional. maybe can help you.
    http://linux.oreillynet.com/pub/a/linux/2003/09/04/oracle_install.html

Maybe you are looking for

  • Disk Utility Zero Out Data option

    I read that it can be good to write zeros to all sectors of a new external disk right away. The Zero Out Data option in the Disk Utility Erase operation states that it "writes zeros over all data on the disk". Does it actually write zeros over every

  • Time Machine Backup hangs on both USB and Time Capsule

    Hello! I have some problems with Time Machine backing up my MacBook Pro Retina 15" Late 2013 running Yosemite 10.10.2. I am using the MacBook both in the office and at home attached to a USB hub with KeyBord and external screen. The MacBook is usuall

  • How do i clear the drop down menu under google and other sites like that?

    when i start typing "mac" on google for example it comes up with all the mac searches i've done how do i clear it??

  • Object Movement with Key Events

    Hi everybody! Im trying to move an object over the screen with keyboard buttons. The problem I have come across with is that I would like to use the right button to move right, up button to move forward, etc. but I cant push, for example, right and u

  • Elimination of Interunit Profit/Loss   SEM-BW 6.0

    Hello people, I am trying to use this functionality, with the option Method 2: Calculation with Quantities but I have doubts about procedure, so I would like to check steps : 1. Activate in data basis / data stream the following items : Inventory Dat