Natural join on Microsoft Access

Hi,
I want to know how to implement a natual join on two tables from two separate databases on Microsoft Access upon J2SE1.4.1
Thank.

Thanks in advance!
On the Dept table, there are two fields: deptName
(primary key) and owes. The Dept table is on the Dept
database.
On the Empl table, there are two fields: emplName
(primary key) and deptName (foreign key). The Empl
table is on the Empl database.
I have created two System DSNs: Dept is for the Dept
database and the Empl is for the Empl database.I'm sure you have good reasons for the tables being in separate databases, but this would be more natural to have the two tables in a single database. Since they are not, my suggestion is to create a link in one of the databases pointing to the other database/table. Assuming that you want the Dept database to be the focal point, you can create the link using File / Get External Data / Link Table. Select ODBC Database(s) from Files of Type. You will see a list of all ODBC DSN's (probably under the machine data source tabl), select the employee database DSN, you will get a list of tables, select the employee table. You now have a schema that shows both the dept and empl tables in the dept database.
>
In my code:
Connection deptConn, emplConn = null;
String deptString, emplString = null;
Statement deptSQL, emplSQL = null;
ResultSet deptRes, emplRes = null ;
Class.forName(?sun.jdbc.odbc.JdbcOdbcDriver?);
deptConn = DriverManager.getConnection(?jdbc:odbc:Dept?);
emplConn = DriverManager.getConnection(?jdbc:odbc:Empl?);I'm not sure what the question marks are in this code (perhaps they used to be quotes)? I know very little about the specifics of J2EE, but this code perhaps should be something like this, where Dept is the name of the Department DSN that you setup previously :
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            Connection con = DriverManager.getConnection("jdbc:odbc:Dept","","");>
deptSQL = deptConn.createStatement();
emplSQL = emplConn.createStatement();
deptString = ?select * from empl, dept?;
deptRes = dempSQL.executeQuery( deptString ) ;Here you would only need to do something like this:
deptSQL = deptConn.createStatement();
deptString = "select * from empl as E, dept  as D where E.deptName = D.deptName";
deptRes = deptSQL.executeQuery(deptString);Is this helping, or am I still confused?

Similar Messages

  • Can't view Microsoft Access data

    Hello,
    I am trying to use a Microsoft Access database (97) as a data source for my repository. I can import it in the Administration Tool and see all the tables. When I finish my repository the global consistency is without errors.
    Then I go to the Answers and make a table, here I see the repository but when I try to view the results it returns only values from the other data source.
    I am using OBIEE 10.1.3.3.2
    Anyone got a suggestion?
    Rgds,
    Dennis de Kock

    I cannot see data at column level either.
    Perhaps there still is a (logical) problem in your logical model.
    I suggest to quickly create a new business model, just for testing. Drag and drop 1 table from your access source twice to the business model. Create a complex join between table and table#. Put an aggregate on one number field in table#. Drag/drop business model to presentation layer.
    Have a look if you now have data from this table in Answers.
    Regards

  • I want to create a database in Microsoft Access

    Hello Team,
    I need to create a Microsoft Access Database from scratch. I need to get consultation from a team member who has done it this before and has knowledge of database creation.
    Please let me know if you are available.
    Thanks,
    GGGGGNNNNN
    GGGGGNNNNN

    Hello KCDW,
    These are the fields and tables I have:
    Table Name: Districts
    Fields: Store_District, Store_Region
    Table Name: Regions
    Fields: Store_Region, Sales_Region_Name
    Table Name: Fiscal_Months
    Fields: Fiscal_Month
    Table Name: Model_Cat_Dess
    Fields: Model_Cat_Des, Product_Des
    Table Name: Model_T_Codes
    Fields: Model_T_Code, Model_Cat_Des
    Table Name: Item_Models
    Fields: Item_Model, Model_Cat_Des
    Table Name: Fact_Table
    Fields: Month, Product_Des, Model_Cat_Des, Model_T_Code,  Item_Model, Retail_District, Retail_Count
    I have joined tables such as below:
    Regions  and districts are connected to each other.
    Anything related to product and item can be connected to each other.
    There is not common field between regions and products and months table.
    I have joined all these tables to fact table which has all these fields. As a result the top 3 are all connected to each other through fact table.
    I don’t have any control on Fact table, every other table has conforming to normal forms and has primary key 
    except fact table.
    Is this approach correct?
    Can I create queires by joining region, district and item table to fact table? Does this approach bring correct resul?
    If it is correct, can I create a query that has district from district table, months
     from the month table and Item_Models  from item_model table and counts for Item_Models from fact table? Because all these tables are connected.
    I have 500 Item_Models that they need to run across 28 districts for 12 months. So I need to build a list of 28 X12 X 500 records, then to see what the counts for each Item_Models is.
    Can I build a query that concatenate districts and months, that mean 12X28 records and then add item_modesl
     fields to it?
    I have already designed the query. But I am not sure that item_models are mapped correctly to the district and months combination.
    District month  item
    12         1     
           a
    12        1            
    b
    And  so on
    Then join this query to fact table through district and month and item to get the counts for each item in a month in a district.
    Can this approach be correct?
    I hope this is clear.
    I truly appreciate your help.
    GGGGGNNNNN
    GGGGGNNNNN

  • IN A NATURAL JOIN THE ANSWER QUERY DEPENDS OF PROJECTION ??!!

    Hi,
    Related to this question
    Link: problems with natural join
    Does the answer query depend of projection in a complex NATURAL JOIN query?
    Thanks,
    Ion

    You are most likely encountering this bug:
    Bug 5031632 - Wrong results from NATURAL JOIN, Metalink Note: 5031632.8
    It currently affects all versions of Oracle.
    You can tell something weird is going on by the EXPLAIN PLAN results:
    Query:
    SELECT     *
    FROM     BOOK
    NATURAL JOIN
         AUTHORSHIP
         NATURAL JOIN
              AUTHOR
              NATURAL JOIN
              COUNTRY
    WHERE     COUNTRY.NAMECOUNTRY = 'Canada'
    Explain Plan:
    SQL> /
    PLAN_TABLE_OUTPUT
    Plan hash value: 3878360587
    | Id  | Operation        | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |      |     1 |    39 |    28   (8)| 00:00:01 |
    |*  1 |  HASH JOIN       |      |     1 |    39 |    28   (8)| 00:00:01 |
    |*  2 |   HASH JOIN      |      |     1 |    29 |    17   (6)| 00:00:01 |
    |*  3 |    HASH JOIN     |      |     1 |    23 |     9  (12)| 00:00:01 |
    |   4 |     VIEW         |      |     2 |    16 |     2   (0)| 00:00:01 |
    |   5 |      UNION-ALL   |      |       |       |            |          |
    |   6 |       FAST DUAL  |      |     1 |       |     2   (0)| 00:00:01 |
    |*  7 |       FILTER     |      |       |       |            |          |
    |   8 |        FAST DUAL |      |     1 |       |     2   (0)| 00:00:01 |
    |   9 |     VIEW         |      |     3 |    45 |     6   (0)| 00:00:01 |
    |  10 |      UNION-ALL   |      |       |       |            |          |
    |  11 |       FAST DUAL  |      |     1 |       |     2   (0)| 00:00:01 |
    |  12 |       FAST DUAL  |      |     1 |       |     2   (0)| 00:00:01 |
    |  13 |       FAST DUAL  |      |     1 |       |     2   (0)| 00:00:01 |
    |  14 |    VIEW          |      |     4 |    24 |     8   (0)| 00:00:01 |
    |  15 |     UNION-ALL    |      |       |       |            |          |
    |  16 |      FAST DUAL   |      |     1 |       |     2   (0)| 00:00:01 |
    |  17 |      FAST DUAL   |      |     1 |       |     2   (0)| 00:00:01 |
    |  18 |      FAST DUAL   |      |     1 |       |     2   (0)| 00:00:01 |
    |  19 |      FAST DUAL   |      |     1 |       |     2   (0)| 00:00:01 |
    |  20 |   VIEW           |      |     5 |    50 |    10   (0)| 00:00:01 |
    |  21 |    UNION-ALL     |      |       |       |            |          |
    |  22 |     FAST DUAL    |      |     1 |       |     2   (0)| 00:00:01 |
    |  23 |     FAST DUAL    |      |     1 |       |     2   (0)| 00:00:01 |
    |  24 |     FAST DUAL    |      |     1 |       |     2   (0)| 00:00:01 |
    |  25 |     FAST DUAL    |      |     1 |       |     2   (0)| 00:00:01 |
    |  26 |     FAST DUAL    |      |     1 |       |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - access("BOOK"."IDBOOK"="AUTHORSHIP"."IDBOOK")
       2 - access("AUTHORSHIP"."IDAUTHOR"="AUTHOR"."IDAUTHOR")
       3 - access("AUTHOR"."IDCOUNTRY"="COUNTRY"."IDCOUNTRY")
       7 - filter(NULL IS NOT NULL)
    Query:
    SELECT     NAMEBOOK
    FROM     BOOK
    NATURAL JOIN
         AUTHORSHIP
         NATURAL JOIN
              AUTHOR
              NATURAL JOIN
              COUNTRY
    WHERE     COUNTRY.NAMECOUNTRY = 'Canada'
    Explain Plan:
    SQL> /
    PLAN_TABLE_OUTPUT
    Plan hash value: 3246924444
    | Id  | Operation             | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT      |      |     1 |    24 |    27   (4)| 00:00:01 |
    |*  1 |  HASH JOIN            |      |     1 |    24 |    27   (4)| 00:00:01 |
    |   2 |   MERGE JOIN CARTESIAN|      |     1 |    21 |    19   (6)| 00:00:01 |
    |*  3 |    HASH JOIN          |      |     1 |    11 |     9  (12)| 00:00:01 |
    |   4 |     VIEW              |      |     2 |    16 |     2   (0)| 00:00:01 |
    |   5 |      UNION-ALL        |      |       |       |            |          |
    |   6 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |*  7 |       FILTER          |      |       |       |            |          |
    |   8 |        FAST DUAL      |      |     1 |       |     2   (0)| 00:00:01 |
    |   9 |     VIEW              |      |     3 |     9 |     6   (0)| 00:00:01 |
    |  10 |      UNION-ALL        |      |       |       |            |          |
    |  11 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  12 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  13 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  14 |    BUFFER SORT        |      |     5 |    50 |    19   (6)| 00:00:01 |
    |  15 |     VIEW              |      |     5 |    50 |    10   (0)| 00:00:01 |
    |  16 |      UNION-ALL        |      |       |       |            |          |
    |  17 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  18 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  19 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  20 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  21 |       FAST DUAL       |      |     1 |       |     2   (0)| 00:00:01 |
    |  22 |   VIEW                |      |     4 |    12 |     8   (0)| 00:00:01 |
    |  23 |    UNION-ALL          |      |       |       |            |          |
    |  24 |     FAST DUAL         |      |     1 |       |     2   (0)| 00:00:01 |
    |  25 |     FAST DUAL         |      |     1 |       |     2   (0)| 00:00:01 |
    |  26 |     FAST DUAL         |      |     1 |       |     2   (0)| 00:00:01 |
    |  27 |     FAST DUAL         |      |     1 |       |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - access("BOOK"."IDBOOK"="AUTHORSHIP"."IDBOOK")
       3 - access("AUTHOR"."IDCOUNTRY"="COUNTRY"."IDCOUNTRY")
       7 - filter(NULL IS NOT NULL)
    41 rows selected.There are two major differences in these plans.
    1. The correct result has HASH JOINS. However the incorrect result has a MERGE JOIN CARTESIAN. A cartesian join should not be here as there is no need for one per the table structure and NATURAL JOIN syntax.
    2. There is a filter condition missing in the predicate information session.
    Both #1 and #2 above point to the bug I identified. The current work around us to use the JOIN ... ON syntax.
    HTH!

  • Microsoft Access with Unicode

    Hi,
    I recently upgraded my website from CF5 to CF9 running on a virtual server. Below are the specs.
    CF Version: 9,0,0,251028
    Edition: Enterprise
    Operating System: Windows Server 2008
    My old code worked fine except that certain queries were running slow. My hosting provider suggested that I change the driver from "Microsoft Access" to "Microsoft Access with Unicode." As suggested, it did make things much faster. However, there were some pages on my site that didn't work. I did some research and found I had used two "reserved" words for table names that caused the pages to fail when using "Microsoft Access with Unicode" as the driver. Oddly enough, the pages worked fine with the regular "Microsoft Access" driver.
    I am now down to just one error left that I cannot resolve. I get the following error ONLY when using the "Microsoft Access with Unicode" driver.
    Error Executing Database Query.
    Query Of Queries runtime error.
    The select column reference [GetList.ItemNo] is not found in table [GetList].
    This is the code it is referring to.
    <!--- Use QofQ to join queried records against cart data --->
    <CFQUERY NAME="GetProducts" DBTYPE="query">
      SELECT
      GetList.ItemNo AS ItemNo,
      GetList.Item AS Item,
      GetList.Grades AS Grades,
      GetList.Price AS Price,
      GetList.OrderQty AS Quantity,
      (GetList.OrderQty * GetList.Price) AS ProductSubTotal
      FROM GetList
    </CFQUERY>
    Is there an issue with "Microsoft Access with Unicode" not playing nicely with Query Of Queries?
    I would greatly appreciate any help with this issue.
    Thanks,
    Steve

    THANK YOU!  THANK YOU!  THANK YOU!
    I never noticed that I had included the column "ItemNo" more than once (as you can see below). I removed the extra and it worked perfectly!
    Thanks again!
    Steve
    <cfquery name="GetList"
    DATASOURCE="#request.ds#"
    USERNAME="#request.dsuser#"
    PASSWORD="#request.dspass#">
    SELECT
    o.OrderID,
    o.OrderDate,
    o.ShipState,
    o.ShipCountry,
    o.TaxExempt,
    o.PromotionalCode,
    oi.ItemNo,
    oi.OrderQty,
    oi.Price,
    p.ItemNo,
    p.Item,
    p.Grades 
    FROM Orders o,
    OrdersItems oi,
    Products p
    WHERE o.OrderID = #ATTRIBUTES.OrderID#
    AND oi.OrderID = o.OrderID
    AND p.ItemNo = oi.ItemNo  
    </cfquery>

  • Microsoft Access onto a webpage

    I have a very large database made in Microsoft Access.  I was wanting to put my database on dreamweaver.  I have quite a few other programs with Adobe that I can use. I do NOT want to use Acrobat because I want an interactive database available on the internet.  I was also curious if there is a way to make it so the person viewing the database does not have to have Access installed as a program.
    Any help would be GREATLY appritiated!!!!!
    Thanks!
    Amber

    dave milbut wrote:
    nice. john gets the points!
    YOU'RE WELCOME AMBER MCKEE!
    Naturally, he was explicit... you were implicit... But this is why the whole point system is meaningless... Who knows, probably your answer triggered off John's reply... <shrug>.
    GET RID OF POINTS AND THE CORRECT ANSWER FIASCO

  • Can not Insert data to Microsoft Access successfully

    I am using Microsoft Access database, and trying to insert some data into a table with a "while" loop, but every time, the last row can not be inserted although the return value of the "executeUpdate()" is 1, can anyone tell what's wrong with that? thank you very much

    http://forums.java.sun.com/thread.jsp?forum=48&thread=147704
    Sounds like it may be the same "glitch"
    Jamie

  • An Error Occurred while trying to join "my wireless access point"

    Hi,
    I've been using wireless access for a year and never had a problem connecting.
    But starting yesterday I get a +*An Error Occurred while trying to join "my wireless access point", Please try again.+* Message.
    I have 2 Mac's and have no problem connecting with the other one. It’s just the IMac.
    I tried everything including resetting router, changing password, adding a $ to the password, accessing without password, deleting the whole air port and create a new one, but still getting the same message.
    I might need to add, while I was working with the IMac I didn’t use wireless for a few hours, but when I got back to my browser I noticed that I was connected to a different wireless service. (FONFREEINTERNET if it matters) I have no idea why, since I didn’t change it.
    Anyways, I tried to switch back to my access point, but it wouldn’t let me. It’ll just give me the +*An Error Occurred while trying to join "my wireless access point", Please try again.+* Message.
    Funny is when I use the FONFREEINTERNET access point the internet seems to work fine.
    I could look up Google without a problem, but when I tried to connect to Facebook for example it won’t let me. Instead a FONFREEINTERNET page will pop up with some options on how to pay! (by minute/or day/or week…)
    I get the strange feeling that they planted some kind of bug/virus!!!
    I don’t know what else to do.
    Anyone knows that problem? What can I do?
    Any help is greatly appreciated!
    I researched on FONFREEINTERNET, there’s a spot close to my house/guess that’s the one I used…
    http://maps.fon.com/ ZIP CODE 904-0113 and you’ll see a coffee pod, which is about 2 minutes walk from my house.

    Hello Tesserax,
    I get the same error message again...
    I tried the 3 suggested steps again, but unfortunately it did not work.
    After a Restart, Sleep or just the awaking from Screensaver mode I’m disconnected from my wireless Network anymore.
    Even if the Computer was asleep for just a second!
    I am able to fix the problem temporarily with Network Preferences → Assist me → Diagnostics
    Choose Airport → Choose network → Enter Password (Even if I check safe password it’ll ask me every time) → and than usually all lights on the left menu switch from red to green and I get the popup message “A Network Change has been detected. Your Internet seems to work fine.” (similar - I’m at work and don’t remember exactly)
    And it works fine…until the screensaver comes on or it sleeps again
    I have the Problem with my IMac and Mini but the IMac at least remembers my password…
    Any Ideas
    I’m connected through a Buffalo WZR2-G300N wireless router

  • How do I open a pdf stored in a Microsoft Access database using Visual Basic studios 2012

    Currently I am unable to find a valid method of being able to open a pdf stored in a Microsoft Access database using Visual Basic studios 2012. I've tried displaying the entire database on a form, but when I do this all the other columns show up with
    the correct data besides the one containing the pdf's, it just displays <binary data> in each row down the column. I also tried another method with which you use the database as a dataset and can drag and drop the rows and columns into the form, which
    again works for all the other columns besides the one containing the pdf's but this time I'm unable to interact with the column  at all. 
    Not too sure if this is in the correct place, but any answers or help would be appreciated. Cheers.

    Alex,
    This forum is dedicated to Project and Project Server. You might get better response, if you post to a Visual Basic forum. Here are couple I could find. 
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Cvblanguage&filter=alltypes&sort=lastpostdesc
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • The Microsoft Access database engine cannot open or write to the file in Report Builder 3.0

    I am trying to build a report in Report Builder 3.0.  I created the Data Source to point to my Excel file and the Data Set.  I drag a couple of fields on to the canvas and then choose Run.  I get the error:  "The Microsoft Access
    database engine cannot open or write to the file.  It is already opened exclusively by another user".  I am using the Excel driver.  Why am I getting this message?  How can I fix this?

    No, now I am getting the error message again.  It is quite long:
    ERROR [HY000] [Microsoft][ODBC Excel Driver] The Microsoft Access database engine cannot open or write to the file '(unknown)'. It is already opened exclusively by another user, or you need permission to view and write its data.
    ERROR [01S00] [Microsoft][ODBC Excel Driver]Invalid connection string attribute Trusted_Connection
    Please help

  • How do I open a Crystal Report from Microsoft Access?

    I'm looking for step-by-step instructions on how to launch a Crystal Report from a Microsoft Access application (for a dummy like me).
    My Crystal Report uses a connection to the Access database as the data.
    I have Microsoft Access 2002 with Microsoft Visual Basic 6.5.
    I have Crystal Reports 2008 CR Developer 12.
    I'll need to know where to find the Visual Basic code references, and/or ActiveX Controls, if applicable.
    Thanks
    Janeen

    I concur with Don. Just a bit of help - a sample VBA app is here;
    https://smpdl.sap-ag.de/~sapidp/012002523100006013432008E/rdc_vba.exe
    But as Don mentioned, you will have to downgrade to CR XI r2 (or lower) to implement the above solution.
    Ludek

  • Insert into Microsoft access 2010 Database on sharepoint using OLEDB

    Hi,
    want to insert data into a microsoft access web db using oledb object. but the i am unable to open the database.
        dbLoc = "http://XXXX.com/project/design/Test_Web_DB
        Dim strConnection As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source= " & dbLoc
        Try
                con = New OleDb.OleDbConnection(strConnection)
                If con.State = ConnectionState.Closed Then con.Open()
        Catch ex As OleDbException
               MsgBox("OleDbException: Unable to Open DB")
        End Try
    it always go to the exception. is there any problem with the above code??

    Hey Bala,
    Browsing the link (as shown below) on the browser doesnt open the DB.
    http://XXXX.com/project/design/Test_Web_DB.accdb
    Instead, without ".accdb" works.
    my requirement is something like below, please recommend your suggestion
    1. i have a DB on access 2010, which gets updated on regular basis (currently db is on common location) by different VB.net application client my the network
    2. i want to create various reports out of the data and want them visible available on sharepoint.
    please help
    -Manash

  • How can I use Microsoft Access on my Mac? Boot camp?

    How can I use Microsoft Access on my Mac? Boot camp?

    Running Windows or using a suite such as Libre Office. It is similar to Office 2007 for Windows, but runs on a Mac, and contains a database manage that is Access compatible.

  • How can I use Microsoft Access on my Mac?

    How can I use Microsoft Access on my Mac Pro?

    Welcome to Apple Support Communities
    Microsoft Access isn't available for OS X, so you can't use it. If you need it, you have to install Windows on a virtual machine.
    On a virtual machine, you can install the Windows version you most like and the Access version you need, so you won't have any problem using it. You just need a full Windows version with its DVD or ISO image and product key, and an application like Parallels, VMware Fusion or VirtualBox to create the virtual machine. If you want to save money, System Builder versions are cheaper and you can find them at Amazon or NewEgg.
    As you have a Mac Pro, I suppose you won't have any problem using a 64-bit version, but it's important you have enough memory. Open  > About this Mac, and check how much memory you have. I recommend 4 or 8 GB of memory at least.
    After installing Windows on the virtual machine, you will be able to install Access there.
    There are applications for OS X that allow you to run Windows applications without having to install Windows. Those apps often fail, so I don't recommend you to use them

  • HT6114 My Mac Book Pro had a split drive with Windows Microsoft Access on it and it was removed when Mavericks installed.  I need this so how can I go back to the old system?

    My Mac Book Pro had a split drive with Windows Microsoft Access on it and it was removed when Mavericks installed.  I need this so how can I go back to the old system?

    Restore from the backup you had prior to installing Mavericks.
    However, the upgrade should not have altered your partition scheme. Did your erase and format the drive prior to upgrading?

Maybe you are looking for

  • Portal look and feel?

    Hi, Can someone please direct me to threads/wiki/blog/sap help for customising portal look and feel like company branding logo and colour themes etc..  I have to a requirement to match SAP Portal interface to look like existing company intranet web s

  • Lenovo G550 - how can I run three monitors

    I've just bought a Lenovo G550 and am running Windows XP Pro on it.   So far so good.  I'm quite happy with it as I think it represents good value for the money.  I have been able to run two external monitors on my G550 laptop - using the VGA port an

  • Installing Oracle 9iDS on Solaris 8 with Oracle 9i DB already running

    Current setup is some what like this. We have SunV440 Server and have Oracle 9i Database running on it. To install 9i DB we have created a user Oracle on OS Solaris8. Now we would like to install Oracle 9iDS (Developer Suite) and configure its Separa

  • Do & or " break down in the OPP process?

    We are having some issues with various orders generating PDF's and the only thing i can figure out is that within the element tags we get & a m p ; and & q u o t ; type values in the strings? (i spaced them out so it would for sure render out correct

  • RAW problem with OO4O and VB6.

    Hello! Env: W2K3 SBS R2, O11gR2, OO4O, VB6 and problem from a "heritage" project ;-). /* Create a small Test table */ Create Table ORAWTEST ( oid Number(10), bflags Raw(4) ) Tablespace USERDATA Storage(Initial 32K Next 32K); ' ** A small VB6 app. **