Having trouble mapping multiple Informix databases to Oracle

Hello,
I am new to Oracle, so please forgive any misuse of Oracle terminology.
I have several dozen Informix 7.31 databases to migrate to Oracle.
We host more than one database per Informix server instance.
Each of these databases have the same schema definition and are usually created by the same user. So, since the table names and owner names are the same for more than one database, the database name itself is the only unique value.
When I attempt to use the Migration Workbench, the database name is lost. The Oracle model created seems to be merging several Informix databases into a single Oracle database (or schema).
A very brief example involving 2 tables;
Informix Source: Database: alf owner: padb table: device_config
Database: firstlast owner: padb table: device_config
Oracle Model: Database: padb User: padb
Table: device_config and device_config_1
I thought I might be able to modify the Informix source database so that the owner name was the same as the database name. That is not always possible because Informix has a limit of 8 characters for user names and many of the Informix database names are longer than that.
This will not work at all. I really don't want to set up separate database server instance for each schema. I found the following statement in one of the Oracle manuals:
"A schema is owned by a database user and has the same name as that user. Each user owns a single schema."
Please help me figure out how to do this.

Do you want to keep all of these Informix databases seperate?Yes, if I understand the question correctly. If this is a question about disk amangement, I am not very concerned with that at this point. I plan to worry about optimizing IO later.
Are all of these databases the same or different? e.g. is the definition of device_config the same for all databases?All the databases have the exact same schema definitions.
Do you need more than one instance of Oracle? e.g. dev / qa / production?There will be more than one instance, but that is based on region and load. Eventually there will be servers deployed throuout the world and serveral sites. Some sites have more than one server, others only have one.
You are correct that I have a lot more reading to do.
The application that uses these databases currently works like this;
1) A DSN Data Source is selected from a list. (it is assumed that each DSN is a separare instance)
2) A connection is opened and a list of databases/schemas is queried from the system catalog.
3) The user selects the database to work with.
Thanks for your help,
Rob

Similar Messages

  • Having trouble with multiple user accounts

    I am still getting used to Aperture and am having trouble with multiple user accounts on my Mac.
    My wife and I have separate accounts on our Mac, and both have Administrator rights. We keep our Aperture library in the "Shared" folder, and I have made sure that both she and I have read/write capabilities on the Aperture library.
    However, she has difficulty creating new projects, saving data, and viewing thumbnails in Aperture. Whenever she creates a project, it does not save into Aperture, and cannot be viewed by any user. In addition, changes she makes to photos do not save. She also cannot view thumbnails of any photos (although she can see the photos in the viewer).
    Are there any changes I need to make to the user accounts so she can have all these capabilities?
    Many Thanks.

    Rather than having the Aperture library reside in the shared folder, keep it within a folder residing at the top level of your mac, eg.
    I actually keep mine on one of my RAID disks.
    Tony

  • Migration of Informix Database to Oracle

    I'm currently looking for a migrationtool to migrate an Informix
    Database running with SAP R/3 applikation to a oracke database
    running under SAP R/3.
    Is the Oracle Migration Workbench able to handle such a request.
    Thanks in advanced
    Cheers Chris
    null

    Chris,
    Presently the Workbench does not migrate from Informix,
    however there are a series of script based tools that presently
    exist that may be of help. They are available for download from
    OTN, under the Migration Toolkits section under Migration
    Workbench.
    Regards,
    Marie
    Christof Hagemann (guest) wrote:
    : I'm currently looking for a migrationtool to migrate an
    Informix
    : Database running with SAP R/3 applikation to a oracke database
    : running under SAP R/3.
    : Is the Oracle Migration Workbench able to handle such a
    request.
    : Thanks in advanced
    : Cheers Chris
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Migrating Informix databases to Oracle

    Hi, I am new to Oracle so apologies if this is a basic question.
    I have Informix set up on a Unix system, which consists of several databases, within Informix the databases are truly relational, i.e I can perform sql queries across rwo databases at the same time.
    From what I understand with Oracle, you can only have one database per instance? is this correct?

    People who come from another rdbms usually have a different concept between database and schema and instance. In Oracle a database, a single database can contain multiple schemas (independent collections of objects belonging to one user). You can have as many databases per host as the host is able to handle according to its capacity. A database is open by one Oracle instance (mutiple instances can open the same database only in RAC mode).
    Oracle can query remote databases by means of database links. In this case the schemas can be queried by granting proper privileges to the users.
    For further introductory concepts I suggest you to read this reference:
    Oracle® Database 2 Day DBA
    10g Release 2 (10.2)
    Part Number B14196-02
    ~ Madrid

  • Having trouble with multiple rotations around an objects poles

    Hey all, i am new to java 3d (only started coding today) but i have been coding in Java for a while..
    I am having a problem understanding how to perform the rotations i want to. I have read the majority of the literature i can find on performing these kinds of rotations. I realise that i need to have correctly linked nodes in the graph so that i am rotating around the correct points and i think i have accomplished this. However, i cannot get the system to rotate around the objects poles. To clarify, i can get the object to rotate around one of its poles (x , y, z) in some cases but trying to do multiple rotations causes problems.
    import javax.media.j3d.Appearance;
    import javax.media.j3d.BranchGroup;
    import javax.media.j3d.ColoringAttributes;
    import javax.media.j3d.PolygonAttributes;
    import javax.media.j3d.Transform3D;
    import javax.media.j3d.TransformGroup;
    import javax.vecmath.Color3f;
    import javax.vecmath.Vector3f;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.utils.geometry.Cylinder;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    public class TestRotation
         private TransformGroup objectTranslateGroup, objectRotationGroup;
         private Transform3D translate = new Transform3D(); private Transform3D  rotX = new Transform3D();
    private Transform3D rotY = new Transform3D()
    private Transform3D rotZ = new Transform3D();
         private double rotationX, rotationY, rotationZ, newRot = 10;
         private SimpleUniverse u;
         public TestRotation()
              // Create the root of the branch graph
              BranchGroup objRoot = new BranchGroup();
              rotationX = 0; //init rotations
              rotationY = 0;
              rotationZ = 0;
              ColorCube cube = new ColorCube(0.25f);
              Appearance x = new Appearance();
              Appearance y = new Appearance();
              Appearance z = new Appearance();
              x.setColoringAttributes(new ColoringAttributes(new Color3f(1,0,0),ColoringAttributes.SHADE_GOURAUD));
              y.setColoringAttributes(new ColoringAttributes(new Color3f(0,1,0),ColoringAttributes.SHADE_GOURAUD));
              z.setColoringAttributes(new ColoringAttributes(new Color3f(0,0,1),ColoringAttributes.SHADE_GOURAUD));
              Cylinder poleX = new Cylinder(0.02f, .75f, x); //RED
              Cylinder poleY = new Cylinder(0.02f, .75f, y); //BLUE
              Cylinder poleZ = new Cylinder(0.02f, .75f, z); //GREEN
              Transform3D poleXTransform = new Transform3D();
              Transform3D poleYTransform = new Transform3D();
              Transform3D poleZTransform = new Transform3D();
              poleXTransform.rotZ(Math.toRadians(90));
              poleZTransform.rotX(Math.toRadians(90));
              TransformGroup poleXTransformGroup = new TransformGroup(poleXTransform);
              TransformGroup poleYTransformGroup = new TransformGroup(poleYTransform);
              TransformGroup poleZTransformGroup = new TransformGroup(poleZTransform);
              poleXTransformGroup.addChild(poleX);
              poleYTransformGroup.addChild(poleY);
              poleZTransformGroup.addChild(poleZ);
              translate = new Transform3D();
              translate.setTranslation(new Vector3f(0,0,0)); //init position
              rotX.rotX(Math.toRadians(rotationX));
              rotY.rotY(Math.toRadians(rotationY));
              rotZ.rotZ(Math.toRadians(rotationZ));
              objectTranslateGroup = new TransformGroup();
              objectTranslateGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              objectRotationGroup = new TransformGroup();
              objectRotationGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              objectRotationGroup.addChild(cube); //add the object to the rotation group
              objectRotationGroup.addChild(poleXTransformGroup); //add the object to the rotation group
              objectRotationGroup.addChild(poleYTransformGroup); //add the object to the rotation group
              objectRotationGroup.addChild(poleZTransformGroup); //add the object to the rotation group
              objectTranslateGroup.addChild(objectRotationGroup); //add the rot group to translate group
              objRoot.addChild(objectTranslateGroup); //add to root
              u = new SimpleUniverse();
              u.getViewingPlatform().setNominalViewingTransform();
              u.addBranchGraph(objRoot);
              this.begin();
         private void begin()
              while(true)
                   //rotationX += newRot; //rotate slightly
                   rotationY += newRot;
                   rotationX += 0; //rotate slightly
                   //rotationY += 0;
                   rotX.rotX(Math.toRadians(rotationX));
                   rotY.rotY(Math.toRadians(rotationY));
                   rotZ.rotZ(Math.toRadians(rotationZ));
                   rotY.mul(rotX); //multiply rotations
                   rotZ.mul(rotY);
                   objectRotationGroup.setTransform(rotZ); //update
                   try {
                        Thread.sleep(300);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              new TestRotation();
    }As you can see the code is a full class so you can copy and paste it to run it... In the 'begin' method you will notice the variables that update the rotation, currently when the cube rotates on the y axis the cube is rotating around the viewers Y axis and not around the objects y pole. However, if you change the values so the cube is set to rotate around the X axis then it will treat the x axis as the objects x pole and not the viewers x axis. I presume this is because of the multiplication of the matrices.
    What i want to know is how can i set it so that if i say rotate around the y axis it rotates the cube around its y axis (as in the y pole) regardless of where the y pole is. Not only that but i need to be able to rotate around multiple axis ensuring that it is rotating around the objects poles correctly.
    The reason for this is that the object will be turned into an auv (underwater vehicle) fitted with thrusters which are going to turn the vehicle so no matter how the vehicle is positioned (facing up, upside down etc) the thruster always rotate around the same axis on the block.
    Hope this makes sense, sorry for the long post!!
    edd
    Message was edited by:
    edwardr

    Since the 2-Wire gateway is providing both modem and DHCP services, you would want to insure that the Time Capsule is not also configured to provide DHCP services as well.  If this were the case, that would mean two routers are trying to do the same thing on the same network. You only want one device on a network performing as a router.
    The reason for this is that a two router setup is likey to create IP address conflicts on the network, which likely may be your issue.
    To check, open Macintosh HD > Applications > Utiltiies > AirPort Utility
    Click on the Time Capsule icon, then click Edit
    Click the Network tab at the top of the next window
    Insure that the setting for Router Mode is set to Off (Bridge Mode)
    Click Update to save the correct setting
    Then power cycle the entire network by powering off all devices in any order that you want
    Wait a minute
    Start the 2-Wire gateway first and let it run a minute by itself
    Start the Time Capsule next the same way
    Continue starting devices the same way until everything is powered back up.
    Power off the entire network...all devices...and wait a minute

  • Having trouble running multiple instances of Firefox in XenDesktop 7.1

    We recently upgraded our Citrix environment to XenDesktop 7.1. We published Firefox, but only one user at a time can have the program open. When we try to run multiple sessions, we get this error message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."
    We've had it published in previous Citrix environments with no problems. How do we need to configure Firefox in XenDesktop so that multiple users can run the program at the same time? Thanks.

    I do not understand virtualisation.
    I can however say that ordinarily Firefox needs each user to have a separate profile and for Firefox to open simultaneous multiple instances with separate profiles the ''-no-remote'' argument needs to be used.
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    * http://kb.mozillazine.org/Opening_a_new_instance_of_your_Mozilla_application_with_another_profile

  • Having trouble with multiple lines

    I'm trying to fill out this form for an application that is a read/enter/print only PDF, and I got to a multiple line box and instead of being able to enter text in line for line, when you try to enter text it shows as one big format which I can't change. Illustration below:
    http://i.imgur.com/Yukk8.jpg
    I don't know if it's some setting I have wrong or they didn't make the text box right or what, but I need to know if there's anything I can do to fix it because they mandated that the form be filled out electronically. Thanks in advance.

    I can't say for certain without looking at the actual PDF but it does appear that they created one large text box over multiple lines. For a fillable form it may have been smarter to remove the lines and create a box with smaller text that supports multiple lines.
    At any rate, nothing you can do about it with the free Reader (and depending on the security, maybe nothing with Acrobat either.)

  • Having trouble writing to a database although SQL query is correct

    Hi there. I am trying to write an sql query to a database but I am failing to understand what is going wrong in terms of executing the query.
    I have the following code.
    static public int writeToStockTable (String suppIn, String nameIn, String typeIn, float quantIn, float priceIn, String descIn, String styleIn, String finishIn)         {               // Temporary variable to hold the SQL query               String SQLString, SQLString2;               ResultSet rs = null;                                     // Build a string containing the SQL INSERT instruction to be used later             SQLString = "INSERT INTO "+typeIn+" VALUES ('1', '" + suppIn + "', '" + nameIn + "', " + quantIn + ", " + priceIn + ", '"+descIn+"', '"+styleIn+"', '"+finishIn+"')";             SQLString2 = "SELECT Name FROM Suppliers WHERE Name = '" + suppIn + "'";                                         try                   {                         // The createStatement() method creates a Statement object.  Object will be                         // attached to my reference variable (statement) defined at the top of class.                         statement = connectionToBellFiresDB.createStatement();                                                 // The executeUpdate() statement can be used here to execute an                         // SQL INSERT instruction.                         rs = statement.executeQuery (SQLString2);                         if ((rs == null))                         {                             System.out.println ("Trying to say no supplier");                             return (-2);                         }                                                 else                         {                             System.out.println (SQLString);                             statement.executeUpdate (SQLString);                         }                                           }                 catch (SQLException exception)                   {                       return (-1);    // Return -1 if problem writing record to file                   }                             return (0);  // Return with 0 if record successfully written                       }
    Please ignore the attributes not used, it is very much a work in progress. The command that prints SQLString prints
    INSERT INTO Fireplace VALUES ('1', 'a', 'a', 1.0, 1.0, 'a', 'a', 'a')
    which is correct, but will return the error code -1 when asked to execute the query. The database jdbc:odbc driver has been initialised in the control panel and the program has no other problems accessing the database as far as i am aware.
    Any help would be appreciated, i hate database connections :)

    Chrift wrote:
    Im sorry i dont know what you mean by eating the exception, im quite a noob at programming to be honest!
    How do i print it out and what is a stack trace?Do you know what an exception is? If not, then you should stay far away from JDBC/Database programming for the time being.
    Read [the Exception Tutorial|http://java.sun.com/docs/books/tutorial/essential/exceptions/] first.
    Then: an exception has quite a bit of useful information attached that tells you what went wrong.
    In your case you catch the exception and ignore everything it could tell you by simply returning -1. Returning 0 and -1 to indicate success/failure is a very bad idea and should not be used in Java code, it's a C-style convention for C-era programming languages. In Java you use exceptions instead.
    For starters you could simply add "exception.printStackTrace()" in your catch-block to get some more information out of the exception.

  • Having trouble with xml package in "Building Oracle Xml Applications"

    I have modified the xml package found in Building Oracle XML Applications chapter 5 to exclude everything but the CLOB function, see Package below. When compiling the package body I am getting the following error.
    SQL> @xml_body
    35 /
    Warning: Package Body created with compilation errors.
    SQL> show errors
    Errors for PACKAGE BODY XML:
    LINE/COL ERROR
    19/5 PL/SQL: Statement ignored
    19/15 PLS-00382: expression is of wrong type
    SQL>
    The error occurs at this line in the xml_body package.
    retDoc := xmlparser.getDocument(parser);
    I am new to Oracle and any help would be appreciated.
    CREATE OR REPLACE PACKAGE xml AS
    -- Parse and return an XML document
    FUNCTION parse(xml CLOB) RETURN xmldom.DOMDocument;
    -- Free the memory used by an XML document
    PROCEDURE freeDocument(doc xmldom.DOMDocument);
    END;
    CREATE OR REPLACE PACKAGE BODY xml AS
    parse_error EXCEPTION;
    PRAGMA EXCEPTION_INIT(parse_error,-20100);
    -- Parse functions parse an XML document and return a handle to
    -- the in-memory DOM Document representation of the parsed XML.
    -- Call freeDocument() when you're done using the document returned
    -- by the function.
    FUNCTION parse(xml CLOB) RETURN xmldom.DOMDocument IS
    retDoc xmldom.DOMDocument;
    parser xmlparser.Parser;
    BEGIN
    IF xml IS NULL THEN RETURN NULL; END IF;
    parser := xmlparser.newParser;
    xmlparser.parseCLOB(parser,xml);
    retDoc := xmlparser.getDocument(parser);
    xmlparser.freeParser(parser);
    RETURN retDoc;
    EXCEPTION
    WHEN parse_error THEN
    xmlparser.freeParser(parser);
    RETURN retDoc;
    END;
    -- Free the Java objects associated with an in-memory DOM tree
    PROCEDURE freeDocument(doc xmldom.DOMDocument) IS
    BEGIN
    xmldom.freeDocument(doc);
    END;
    END;
    null

    I have modified the xml package found in Building Oracle XML Applications chapter 5 to exclude everything but the CLOB function, see Package below. When compiling the package body I am getting the following error.
    SQL> @xml_body
    35 /
    Warning: Package Body created with compilation errors.
    SQL> show errors
    Errors for PACKAGE BODY XML:
    LINE/COL ERROR
    19/5 PL/SQL: Statement ignored
    19/15 PLS-00382: expression is of wrong type
    SQL>
    The error occurs at this line in the xml_body package.
    retDoc := xmlparser.getDocument(parser);
    I am new to Oracle and any help would be appreciated.
    CREATE OR REPLACE PACKAGE xml AS
    -- Parse and return an XML document
    FUNCTION parse(xml CLOB) RETURN xmldom.DOMDocument;
    -- Free the memory used by an XML document
    PROCEDURE freeDocument(doc xmldom.DOMDocument);
    END;
    CREATE OR REPLACE PACKAGE BODY xml AS
    parse_error EXCEPTION;
    PRAGMA EXCEPTION_INIT(parse_error,-20100);
    -- Parse functions parse an XML document and return a handle to
    -- the in-memory DOM Document representation of the parsed XML.
    -- Call freeDocument() when you're done using the document returned
    -- by the function.
    FUNCTION parse(xml CLOB) RETURN xmldom.DOMDocument IS
    retDoc xmldom.DOMDocument;
    parser xmlparser.Parser;
    BEGIN
    IF xml IS NULL THEN RETURN NULL; END IF;
    parser := xmlparser.newParser;
    xmlparser.parseCLOB(parser,xml);
    retDoc := xmlparser.getDocument(parser);
    xmlparser.freeParser(parser);
    RETURN retDoc;
    EXCEPTION
    WHEN parse_error THEN
    xmlparser.freeParser(parser);
    RETURN retDoc;
    END;
    -- Free the Java objects associated with an in-memory DOM tree
    PROCEDURE freeDocument(doc xmldom.DOMDocument) IS
    BEGIN
    xmldom.freeDocument(doc);
    END;
    END;
    null

  • Having trouble sizing multiple graphs using a For Loop in Excel.

    I am creating multiple graphs in Excel using LabVIEW but I can only set the size for the first graph.  The others are ignored.  I am using the Excel Insert Graph Vi.  I can change the position of al 4 graphs and i can change the size of the first graph created but not the others.  Simply create and save a blank Excel workbook and use it when it prompts for the file.  Here is my my code.  Will someone please let me know what is going on.  Thanks.
    Attachments:
    Excel Graph Test.vi ‏88 KB

    If anyone is still following this thread, I have discovered a solution to the problem of resizing multiple graphs in Excel with the Report Generation Toolkit.  The problem seems to occur because subsequent graphs that are added to the report are configured to "Lock Aspect Ratio", which means you cannot assign a width and height to the graph that would violate its initial width/height proportions.  I was able to get around this behavior by defining the object's position and dimensions after creating the object, as opposed to defining them at the same time the object was created.  This problem will be fixed in a future release of the Report Generation Toolkit.  For now, you can fix the problem yourself by modifying vi.lib\addons\_office\excel.llb\Excel Insert Graph.vi.  Here is a screenshot of the affected area of code as it is currently implemented:
    And here is a screenshot of what the code looks like after my modifications that fix the problem:
    By assigning the dimensions after turning off the "Lock Aspect Ratio" feature, we see that all the subsequent graphs are sized correctly.
    Please let me know if you have any questions on this fix.
    -D
    Message Edited by Darren on 07-06-2006 04:48 PM
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman
    Attachments:
    Add_Chart_AFTER.jpg ‏91 KB
    Add_Chart_BEFORE.jpg ‏53 KB

  • I'm having trouble with multiple speaker connections in iTunes?

    Home network running through a Time Capsule:
    1. MacBook
    2. Apple TV (Living Room)
    3. Apple TV (Bedroom)
    4. AirPort Express (Connected to speakers in Kitchen)
    Issue:
    In iTunes I can see and play muisic through all my Apple TVs and the AirPort Express station. However, when I want to connect to multiple speakers (locations) The only two iteams that show up are a single Apple TV (bedroom) and the computer. I can't figure out why my AirPort Express or the other Apple TV (Living Room) will not show up? All my devices have the most recent updates, and function properly as far as connectiong and playing music individualy.
    Can anybody help me figure out why the second Apple TV or AirPort Express won't show up in the "mulitple speaker" selection dialog box?
    Cheers,
    Acolle

    Now my new issue is they are not perfectly synchronized from station to station! What a bummer!
    I wonder if the older Airport Express, hooked up to my kitchen speakers only, with a differerent network performance profle than the new Apple TVs, is to blame?

  • Why am I having trouble mapping a network drive over my airport network?

    Unfortunately, all of the computers in our office are Windows machines; so I have some problems getting things to work. I have three computers connected to the network, wirelessly, and 2 computers connected via ethernet. I need all of these machines to be able to access an airport disk. I had all of them working; then I had to change the network name and password because of a security breach. Now, 2 of the wireless connections cannot establish a connection to the disk. I have tried mapping the drive, with no luck. Please advise.

    Windows can be very sensitive to changes in network.. it can ram up the firewall and disallow network connections even when internet is still working.
    So on the computers that have access issues.. open a command window and ping the IP of the Airport.
    If it responds.. try doing a direct connection by typing,
    \\10.0.1.1 into the address bar of windows explorer. (replace that IP with the actual IP of the airport).
    If it refuses to open when the ping worked.. you can still have firewall issues.. and it is worthwhile turning it off to test.
    Also do you have bonjour for windows service running.. check the administrator details in control panel for bonjour??
    Do you have the airport utility for windows installed? That can help and at least if the airport utility works then the disk should be accessible.
    However other rubbish happens..
    Tell me if the two computers with issues do have internet access.. and can ping the Airport.. if you cannot get the disk to open.. !!

  • Having trouble with multiple lines of text in a JTable

    Hello,
    I am trying to use a JTable rather like a table in Word so that as I type text into a cell that row of cells grows in height to accomodate the text typed.
    I used custom cell editors and renderers to put a JTextField (I think it was) into each cell. These allow the entry of more than one line but the row height is still wrong. So I interceot every key press and work out the height of the custom editor, and set the row height to the max of the cells in the row on each key depression. However, this is a very clunky solution and also does not cope with cell resizing.
    I can't believe that it is this hard to get cells/rows that resize in response to typing. So I'd be grateful if someone knows of a better way of doing this.
    Many thanks in advance...
    Gary

    I've never tried it buy you can read the Swing tutorial on "How to Use HTML is Swing Components":
    http://java.sun.com/docs/books/tutorial/uiswing/TOC.html

  • VPN - having trouble mapping to a server using path

    I need to connect to a couple of drives on my workplace. I work remotely. I was able to create a VPN connection (via System Preferences > Network) with the info they provided. I connect and it shows the connection as being successful.
    However, I haven't been able to connect to a couple of directories. The paths they provided look something like this:
    \\ServerName\DirectoryName
    \\ServerName\users\UserName
    I tried the Go > Connect to server and typed it like this:
    smb://servername/directoryname
    But I haven't been able to connect. I get an error window that says:
    Connection Failed.
    The server may not exist or it is not operational at this time. Check the server name or IP address and your network connection and try again.
    What am I doing wrong?

    Would the issue of the Mac connecting as Guest be resolved if I successfully created a VPN connection?
    No, the Guest issue is independent of VPN. It's a issue with Windows in that if the machine with the share can't figure out what username to use, it will try guest. This happens most often with machines that are logged on to non-domain usernames, which is how your Mac would most likely connect unless your company is using some other authentication system.
    Additional info in case you do need to use alternate credentials. You may have to enter your username as domain\username (Note the backslash.) You'd get the domain name from your network administrator, if you don't know it.

  • Still having trouble embedding multiple .swf's

    I made a really simple example of what I am trying to do:
    http://www.jocci.com/indio.htm

    Hi,
    If this is the same question that you asked previously, I would advise you to wait until experts get back on  your previous post.
    Thanks,.
    Preran

Maybe you are looking for

  • Error while using AIR 2.7 in Mobile applicaton

    hi, when i am trying to use AIR2.7 in Flex mobile project, it shows the error. Process terminated unexpectedly. invalid application descriptor: Unknown namespace: http://ns.adobe.com/air/application/2.7 Launch command details:  "C:\Program Files (x86

  • CO objects in GRIR account on the IR Document

    Does anyone know how to prevent the cost center from being populated from the PO onto the GRIR line item when an IR is posted.  The account is a balance sheet account but the field KOSTL is being populated - this is affecting reporting due to securit

  • Patch for upgrading 10g AS from 10.1.2.0.2 to 10.1.2.1

    Hi All, I am in process of doing 10g AS integration with 11.5.10.2. here as per documentation i have seen that this 10g AS has to upgrade My 10g AS version is 10.1.2.0.2 The below msg is as per Oracle Documentation If you are running Oracle Applicati

  • Dbconsole aint running! ;O(

    Gentlemans....! Im trying to first run the 11g on windows XP and when I try to start the dbconsole with emctl start dbconsole the system throws: DBConsole service cannot start Server error: 2 To get help type NET HELPMSG 3547 I checked the status wit

  • Logging in results in hang - can't log in!

    When I start up my MBP, it gets to the user-picker ok, accepts my account password, but then hangs with just the 'nebula' desktop (not my user-preference desktop) and a (movable) cursor. I've tried restarting many times, but it never gets further tha