Cross database join support timeline

Hi
As I am reading on this forum and over the web, SQL Azure doesnt support cross database joins.
Even the synonym entity is restricted to current database or the tempdb.
Need to understand the official position on above.
1. Whether there is a plan to support cross database joins in future.
2. If yes, by when can such a support be expected.
Thanks
Abhishek

Hi Mekh
Thanks for the quick response.
Your reply means that we will need to combine multiple databases into one, in order to be able to use SQL Azure.
Here is our situation:
1. We have two development Databases - let us say DB A and DB B, managed by different product development teams.
2. Some customers require both A and B, while some require only A, and others only B. All customers are proposed to be on SQL Azure. So now we have three types of production database schemas - A+B, A and B.
3. With continuous development, schemas of both DB A and DB B keep changing.
4. We need to replicate this schema change to all customer databases deployed on SQL Azure.
Kindly let me know the best way to achieve above, in terms of best tools and practices.
Thanks
Abhishek

Similar Messages

  • OBIEE error: Getting error in creating cross database joins

    Hi,
    We are trying to create a cross database join in OBIEE.
    CHild table is on SQL server and we are using ODBC 3.5 call interface to connect.
    Parent table is in Oracle
    11.2.0.3.0
    Each table can be queried separately. Main task required was to fetch records from Oracle based on records returned by SQl server (Query based on other saved request).
    The count of inner query got increased to 30,000 due to which we got too many records in IN predicate error.
    Now while creating cross database join between Oracle and SQL server we are getting following error:
    [nQSError: 10058] A general error has occured. ODBC state: 37 000
    code: 102 message: [microsoft][ODBC SQL Server driver][SQL Server] Incorredt Syntax near 'Session'
    [nQSError: 16015] SQL statement execution failed.

    Hi,
    Could you give a bit more of context for this case? The table in SQL server; Is it a dimension and the one in Oracle DB is a fact? I am guessing, you have set up the driving table here. Have you given a try taking it off, and let BI Server do the filter in memory?
    -Dhar

  • OBIEE 11g caching question - cross database joins

    Hi, I'm seeing something strange (a.k.a. not wanted) in OBIEE (11g, not sure that version matters).
    I have a simple data mart that contains spend information. The supplier dimension contains keys that can be used to join it to detailed supplier information and supplier address information in our ERP system (that sits in a different database / on a different box). In the OBIEE physical layer I've created a cross database join between the supplier dimension table and the ERP tables that contain the address info.
    Here's the odd behavior I'm seeing. If I write an answers request to select the supplier, some address info, and total spend for fiscal year 2010, I'm seeing OBIEE fire off two queries (this I expect):
    A) Select supplier, address key, and total spend for fiscal year = 2010 against the spend mart
    B) select address_key and associated address info against the ERP system (no limit on this query, it pulls back all rows from the address table)
    OBIEE then does an internal join itself and serves up the results, everything is correct. But here's what's "wrong" - if I then run the exact same answers request, but change the fiscal year to 2009, I again see OBIEE firing off the two queries. What I expected and/or want to see is that, since the entire result set from query #B doesn't change at all, that it wouldn't have to rerun this query. However, it seems to be.
    Is there any way to get #B to cache so that, for any subsequent query that contains supplier address info, OBIEE can pull it from cache instead of rerunning the query (which is pretty slow)? I really thought it would do that, but it doesn't seem to be.
    Thanks!
    Scott

    Hi,
    Could you give a bit more of context for this case? The table in SQL server; Is it a dimension and the one in Oracle DB is a fact? I am guessing, you have set up the driving table here. Have you given a try taking it off, and let BI Server do the filter in memory?
    -Dhar

  • Cross database join Oracle - SQL server date column - nQSError: 46008

    Hi,
    I am using OBIEE 10.1.3.4.2 and
    I am able to make cross database join between Oracle and SQL server using varchar columns, but I am getting this error:
    nQSError:22024-A comparison is being carried out between noncompatible type when I try to make "foreign key" join between two tables (one from Oracle, second from SQL Server) using number columns (INT, DOUBLE...). It is strange, but I when I make "complex join" on physical layer no error is thrown and everything works fine.
    But I am not able to make join between tables using Date column. Column in Oracle table has DATE datatype, column in SQL server tables has datetimeoffset(7) datatype (example: 2011-07-19 13:14:22.2032605 +02:00). So I tried to cast datetimeoffset(7) to date datatype using "convert(DATE,HappenedOn,120)" - this returns me 2011-07-19 . In this format, BI can show converted date column, I can make filter using this date column, but I am not able to make physical join with Oracle table using this column
    Answer using data from both joined tables gives me this error:
    [nQSError: 46008] Internal error: File .\DataType\SUKeyCompare.cpp, line 875. (HY000)
    Do you have some tips, how to solve this "bug"?

    Parse the command column to get the SSIS package file name may be your only option here.

  • Question about Crystal Reports 4.0 and "cross database joins"

    Hi everybody,
    in Crystal Reports 2008 we could use the cross database joining feature to put two or more BEx queries via MDX into one report and join them within Crystal Reports. We know that this might lead to performance problems but for some scenarios this was the only solution.
    Now with Crystal Reports for Enterprises 4.0 the whole connection to SAP systems will change. Will we have a chance to make one report agains two or more BEx queries any other way than using subforms. The latter will not fit our needs.
    Thank you very much!
    Thorsten

    Hi,
    Crystal Reports 4.0 is in RampUp right now. In case you are interested in the details I would suggest you join the RampUp.
    regards
    Ingo Hilgefort

  • Cross Database Insert on rows

    Is there a standard way to insert rows into a table and get the last inserted value for the identity column back ?
    e.g. Oracle does'nt support IDENTITY or AUTONUMBER on insert as a sequence is desired. This creates a huge problem for writing cross database insert code.
    Most of the times the last value inserted for the identity column has to be returned so it can be used in a database transaction.
    Say User wants to insert data into an User table which has the following columns...
    user_id int (PK) Auto generated number
    firstname VARCHAR(20)
    lastname VARCHAR(20)
    In Sybase or SQL Server The user would just call
    insert into User (firstname,lastname) values ('John', 'Doe') and then call select @@identity to get the last value of the PK inserted.
    However in Oracle the insert method first needs to know the name of the sequence from where the value of the PK needs to be obtained. Then it has to use that value to insert row in the table.
    If the sequence is Seq_User
    select Seq_User.nextval from dual and then
    insert into User (user_id,firstname,lastname) values (last_value, 'John', 'Doe')
    Now if a user has written code using JDBC for Sybase and the Database is migrated to Oracle, He has to go changing all his inserts!!!
    Is there a way to write cross database code so that user does not have to worry about changing his code for all the inserts?
    Any help is greatly appreciated.
    Thanks,

    This has been discussed here already.
    As far as I know there is no standard way.
    Maybe you can make an own "standard" solution by doing your logic in a stored procedure which returns the new ID value.
    So you can move all DBMS specific stuff into the stored procedure.
    Of course there's a need of adapting this to each target DBMS.
    Can you reduce the number of needed SPs by making them more generic?
    Very similiar solution - if you like it more - would be to make generic methods, in a base class or interface and overwritten/reimplemented for each target DBMS.
    There could be a good use of inheritance and polymorphism in this task which SPs don't provide (except for those DBMSses who allow Java-coded SPs, but that would be platform dependant again).

  • How to get Hierarchical XML File from a Database Join Query !

    Hi,
    How can i get a Hierarchical XML File from a Database Join Query ?
    Any join query returns repeated values as below:
    BD17:SQL>select d.dname, e.ename, e.sal
    2 from dept d
    3 natural join
    4 emp e
    5 /
    DNAME ENAME SAL
    ACCOUNTING CLARK 2450
    ACCOUNTING KING 5000
    ACCOUNTING MILLER 1300
    RESEARCH SMITH 800
    RESEARCH ADAMS 1100
    RESEARCH FORD 3000
    RESEARCH SCOTT 3000
    RESEARCH JONES 2975
    SALES ALLEN 1600
    SALES BLAKE 2850
    SALES MARTIN 1250
    SALES JAMES 950
    SALES TURNER 1500
    SALES WARD 1250
    14 rows selected.
    We tried use DBMS_XMLQUERY to generate a xml file, but it was unable to get xml in Hierarchical format.
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    - <ROWSET>
    - <ROW num="1">
    <DNAME>ACCOUNTING</DNAME>
    <ENAME>CLARK</ENAME>
    <SAL>2450</SAL>
    </ROW>
    - <ROW num="2">
    <DNAME>ACCOUNTING</DNAME>
    <ENAME>KING</ENAME>
    <SAL>5000</SAL>
    </ROW>
    - <ROW num="3">
    <DNAME>ACCOUNTING</DNAME>
    <ENAME>MILLER</ENAME>
    <SAL>1300</SAL>
    </ROW>
    - <ROW num="4">
    <DNAME>RESEARCH</DNAME>
    <ENAME>SMITH</ENAME>
    <SAL>800</SAL>
    </ROW>
    - <ROW num="5">
    <DNAME>RESEARCH</DNAME>
    <ENAME>ADAMS</ENAME>
    <SAL>1100</SAL>
    </ROW>
    - <ROW num="6">
    <DNAME>RESEARCH</DNAME>
    <ENAME>FORD</ENAME>
    <SAL>3000</SAL>
    </ROW>
    - <ROW num="7">
    <DNAME>RESEARCH</DNAME>
    <ENAME>SCOTT</ENAME>
    <SAL>3000</SAL>
    </ROW>
    - <ROW num="8">
    <DNAME>RESEARCH</DNAME>
    <ENAME>JONES</ENAME>
    <SAL>2975</SAL>
    </ROW>
    - <ROW num="9">
    <DNAME>SALES</DNAME>
    <ENAME>ALLEN</ENAME>
    <SAL>1600</SAL>
    </ROW>
    - <ROW num="10">
    <DNAME>SALES</DNAME>
    <ENAME>BLAKE</ENAME>
    <SAL>2850</SAL>
    </ROW>
    - <ROW num="11">
    <DNAME>SALES</DNAME>
    <ENAME>MARTIN</ENAME>
    <SAL>1250</SAL>
    </ROW>
    - <ROW num="12">
    <DNAME>SALES</DNAME>
    <ENAME>JAMES</ENAME>
    <SAL>950</SAL>
    </ROW>
    - <ROW num="13">
    <DNAME>SALES</DNAME>
    <ENAME>TURNER</ENAME>
    <SAL>1500</SAL>
    </ROW>
    - <ROW num="14">
    <DNAME>SALES</DNAME>
    <ENAME>WARD</ENAME>
    <SAL>1250</SAL>
    </ROW>
    </ROWSET>
    Thank you for some help.
    Nelson Alberti

    Hi,
    I wrote a general ABAP program which can be configured to grab contrent from an URL and post that content as a new PI message into the integration adapter .... from that point on normal PI configuration can be used to route it to anywhere ...
    It can be easily scheduled as a background job to grab content on a daily basis etc ...
    Regards,
    Steven

  • Lync 2013 Enabling Cross-Database Access in SQL Server

    Hello,
    I want to know when Enabling Cross-Database Access in SQL Server will be enabled for Lync Server 2013.
    Will Lync Server enable it by default?
    Stmart

    DCOM Errors are awful.  Here's a few articles that I've read before that match your error. Some you've likely already seen...
    http://d1it.wordpress.com/2013/10/28/dcom-move-lync-user/
    http://blogs.technet.com/b/dodeitte/archive/2010/12/19/issue-when-moving-legacy-users-to-a-lync-server-2010-pool-using-hlb.aspx
    http://www.networksteve.com/windows/topic.php/Unable_to_Move_users_between_2_Lync_Pools/?TopicId=61736&Posts=2
    http://www.bibble-it.com/2011/03/22/unable-to-move-lync-user-dcom-error
    Using the -force command as Saleesh noted should work, but will kill your contacts.  If it's just a few users that are acting up, you can restore the contacts from backup for these users (export-csuserdata before you start).
    Is it all users, or just a handful?
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Converting single instance database(11gr2) supporting EBS 12.1.3 to 2 node RAC on RHEL.

    Hi We are in the process of converting single instance database(11gr2) supporting EBS 12.1.3 to 2 node RAC on RHEL. Which version of RHEL is better? if its 6.x then x?? The oracle document only says RHEL update 6.
    thanks in advance.

    Hi,
    Yes you can use any version but i recommend  you to use 6.2
    Also refer my post for RAC migration in EBS
    Apps DBA Workshop: Using 11gR2 RAC with Oracle Applications R12.1.1
    Hope this helps
    thanks,
    X A H E E R

  • Database control support for "IN" clause

    Does anyone know if the database control supports an 'IN' clause construct, e.g.,
    SELECT name FROM mytable WHERE id IN ( {values} )
    where values would be passed in as a variable length array of Strings or Integers?
    Thanks,
    DC

    I forgot to paste in the link to the documenation. Here it is
    http://edocs.bea.com/workshop/docs81/doc/en/workshop/guide/controls/database/conParameterSubstitutionInJwsSqlStatements.html
    "John Rohrlich" <[email protected]> wrote in message
    news:[email protected]..
    Dave,
    I think you will need to build the sql and pass it to the control method.
    For example
    String matchMe = "('Bill Walton', 'Fred Williams')";
    Customer[] customers = weblogicCustomer.getCustomersIn(matchMe);
    * @jc:sql statement= "SELECT name from weblogic.customer where namein
    {sql: matchMe}"
    public Customer[] getCustomersIn(String matchMe);
    Here is a link to a doc explaining parameter substitution for jc:sql
    statements
    - john
    "Dave Chappelle" <[email protected]> wrote in message
    news:[email protected]..
    Does anyone know if the database control supports an 'IN' clauseconstruct, e.g.,
    SELECT name FROM mytable WHERE id IN ( {values} )
    where values would be passed in as a variable length array of Strings orIntegers?
    Thanks,
    DC

  • Prime Infrastructure 2.0: Open Database Schema Support available?

    Hello,
    I searched the forum for an Open Database Schema Support for PI.
    I only found Open Database Schemas for the Cisco Works LAN Managemet Solutions and Cisco Prime LAN Managemet Solutions.
    Exists an open Database Schema Support for Prime Infrastructure 2.0 as it exists for the older LAN Managemet Solutions ?
    Thanks.
    Bastian

    Programmatic interface to Prime Infrastructure is done via the the REST API vs. any open database schema.
    There are published reference guides here. For the most up to date information, please see your PI server itself. In Lifecycle view, the help menu has a link to the server-based API information:

  • LMS 4.0.1 cannot access rmeng database via Open Database Schema Support

    Hi,
    we are running LMS 3.2 and I am using Open Database Schema Support to transfer the data from cmf, ani and rmeng databases.
    We now want to migrate to  LMS 4.0.1 and I am trying to use the same scripts to do the same. I am using iAnyWhere JDBC Access Method, the same one I use successfully with LMS 3.2. Can access the tables in cmf and ani databases, but cannot the tables in rmeng database. I do not think my scripts are wrong, I more think enabling access to databases does not work correctly.
    I tried to run dbaccess.pl in debug mode and can see there are errors for example while enabling access to the table  NETWORK_DEVICES in rmeng, please see the log below.
    We tried to restart LMS and also the whole server ( it is MS Windows 2008 R2 on VMware ), but this did not help.
    Appreciate if anyone has an idea what could be wrong.
    Thanks,
    Vlad
    D:\BAT>%cwbin%perl  %cwbin%dbaccess.pl install debug
    Enter new Password for database view user [lmsdatafeed]:
    Re-enter new Password:
    Executing on cmf...
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatafeed' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
    Executing on ani...
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatafeed' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
    Executing on dfmFh...
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatafeed' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
    Executing on rmeng...
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatafeed' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: User ID 'lmsdatagrp' does not exist (DBD: execute failed).
       WARN: Table 'SYSLOG_TODAY' not found (DBD: execute failed).
       WARN: Table 'SYSLOG_LASTDAY' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: External login for server 'CMFSA' could not be found (DBD: execute fail
    ed).
       WARN: Remote server 'CMFSA' could not be found (DBD: execute failed).
       WARN: Unable to connect to server 'CMFSA': [Microsoft][ODBC Driver Manager] T
    he specified DSN contains an architecture mismatch between the Driver and Applic
    ation (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'Network_devices' not found (DBD: execute failed).
       WARN: Table 'NETWORK_DEVICES' not found (DBD: execute failed).
       WARN: Table 'DEVICE_INVENTORY' not found (DBD: execute failed).
       WARN: Table 'MEMORY_INVENTORY' not found (DBD: execute failed).
       WARN: Table 'DEVICE_CREDENTIAL_STATUS' not found (DBD: execute failed).
       WARN: Table 'PROCESSOR_INVENTORY' not found (DBD: execute failed).
       WARN: Table 'DEVICE_INVENTORY_COLLECTION_STATUS' not found (DBD: execute fail
    ed).
       WARN: Table 'DEVICE_CONFIG_ARCHIVE_STATUS' not found (DBD: execute failed).
       WARN: Table 'CHANGE_AUDIT_HISTORY' not found (DBD: execute failed).
       WARN: Table 'MODULE_INVENTORY' not found (DBD: execute failed).
       WARN: Table 'PORT_INVENTORY' not found (DBD: execute failed).
       WARN: Table 'DEVICE_ENERGYWISE' not found (DBD: execute failed).
       WARN: Table 'PORT_ENERGYWISE' not found (DBD: execute failed).
       WARN: Table 'SYSLOG_TODAY' not found (DBD: execute failed).
       WARN: Table 'SYSLOG_LASTDAY' not found (DBD: execute failed).

    Hello Joseph,
    thanks for the reply. I was confused because I am not getting any such errors on LMS 3.2 server.
    I am using many Java programs that work well with LMS3.2, but let me mention one that is probably the best to demonstrate the issue I have with the new version. It works well on LMS3.2 with all databases. On LMS4.0.1 it works well with cmf and ani, but cannot dig any data from rmeng.
    Here is the batch I run on the LMS 4.0.1 server ( it is not the whole file as it is much larger ):
    =================================================================================
    @echo *************************************
    @echo Starting Creating MySQL Mirror file
    @echo *************************************
    set classpath=d:\progra~2\CSCOpx\lib\classpath\;d:\bat\
    @echo Common Services db, Network_Device view
    java CW_Java_CreateSQL cmf password Network_Devices CW_Network_Devices CW_Network_Devices.txt Device_Id Device_Display_Name Management_IpAddress Host_Name Domain_Name sysObjectID Device_Category Device_Series Device_Model UDF0 UDF1 UDF2 UDF3 UDF4 UDF5 UDF6 UDF7 UDF8 UDF9 UDF10 UDF11 UDF12 UDF13 UDF14 UDF15
    goto jv1_%errorlevel%
    :jv1_0
    @echo Campus Manager db, End Hosts view
    java CW_Java_CreateSQL ani password End_Hosts CW_End_Hosts CW_End_Hosts.txt HostName UserName IPAddress SubnetMask MACAddress DeviceName Device LastSeen Port VLAN Subnet Notes PrefixLength PortDuplex VTPDomain VlanId PortName IPv6Address dot1xEnabled associatedRouters
    goto jv2_%errorlevel%
    :jv2_0
    @echo Resource Manager Essentials db, Device_Inventory view
    java CW_Java_CreateSQL rmeng password Device_Inventory CW_Device_Inventory CW_Device_Inventory.txt Device_Id Device_Display_Name Device_Description Device_Location Device_Contact Device_SW_Version User_Defined_Serial_Number
    goto jv3_%errorlevel%
    :jv3_0
    @echo Resource Manager Essentials db, Module_Inventory view
    java CW_Java_CreateSQL rmeng password Module_Inventory CW_Module_Inventory CW_Module_Inventory.txt Device_Id Device_Display_Name Module_Name Vendor_Type SW_Version FW_Version Slot_Number Oper_Status Admin_Status
    goto jv4_%errorlevel%
    :jv4_0
    @echo Resource Manager Essentials db, Port_Inventory view
    java CW_Java_CreateSQL rmeng password Port_Inventory CW_Port_Inventory CW_Port_Inventory.txt Device_Id Device_Display_Name Port_Name Port_Desc Port_Type Port_Admin_Status Port_Oper_Status Port_Speed Port_Duplex_Mode Is_Link_Port Is_Access_Port Is_Trunk_Port Is_Port_Channel Vlan_Name VlanId VTPDomain Neighbour_Type
    goto jv5_%errorlevel%
    :jv5_0
    @echo Resource Manager Essentials db, Processor_Inventory view
    java CW_Java_CreateSQL rmeng password Processor_Inventory CW_Processor_Inventory CW_Processor_Inventory.txt Device_Id Device_Display_Name Processor_model_name Processor_vendor_type Processor_manufacturer serialnumber
    goto jv6_%errorlevel%
    :jv6_0
    @echo *************************************
    @echo Finished Creating MySQL Mirror file
    @echo *************************************
    =================================================================================
    Here is the log:
    =================================================================================
    Starting Creating MySQL Mirror file
    D:\BAT>set classpath=d:\progra~2\CSCOpx\lib\classpath\;d:\bat\
    Common Services db, Network_Device view
    D:\BAT>java CW_Java_CreateSQL cmf password Network_Devices CW_Network_Devices CW_Ne
    twork_Devices.txt Device_Id Device_Display_Name Management_IpAddress Host_Name D
    omain_Name sysObjectID Device_Category Device_Series Device_Model UDF0 UDF1 UDF2
    UDF3 UDF4 UDF5 UDF6 UDF7 UDF8 UDF9 UDF10 UDF11 UDF12 UDF13 UDF14 UDF15
    D:\BAT>goto jv1_0
    Campus Manager db, End Hosts view
    D:\BAT>java CW_Java_CreateSQL ani password End_Hosts CW_End_Hosts CW_End_Hosts.txt
    HostName UserName IPAddress SubnetMask MACAddress DeviceName Device LastSeen Por
    t VLAN Subnet Notes PrefixLength PortDuplex VTPDomain VlanId PortName IPv6Addres
    s dot1xEnabled associatedRouters
    D:\BAT>goto jv2_0
    Resource Manager Essentials db, Device_Inventory view
    D:\BAT>java CW_Java_CreateSQL rmeng password Device_Inventory CW_Device_Inventory C
    W_Device_Inventory.txt Device_Id Device_Display_Name Device_Description Device_L
    ocation Device_Contact Device_SW_Version User_Defined_Serial_Number
    Exception in thread "main" java.sql.SQLException: [Sybase][ODBC Driver][SQL Anyw
    here]Table 'Device_Inventory' not found
            at ianywhere.ml.jdbcodbc.IIStatement.executeQuery(Native Method)
            at ianywhere.ml.jdbcodbc.IStatement.executeQuery(IStatement.java:201)
            at CW_Java_CreateSQL.main(CW_Java_CreateSQL.java:102)
    D:\BAT>goto jv3_1
    Error Creating MySQL Mirror file
    =================================================================================
    The line 102 in Java program is this line:
    rs = stmt.executeQuery(query);
    Attached is the full Java program - CW_Java_CreateSQL.java
    Thank you,
    Vlad

  • Creating cross-functional joins in Discoverer Admin

    Hello
    When creating cross-functional joins, say b/w Projects and Suppliers in Disco Admin, I import the Suppliers folder and then create the joins b/w Projects and Suppliers in the Projects Business Area.
    However, the user needs access to both Projects and Accounts Payables (has Suppliers) to access the new cross-functional report. Is there a way by which the user needs to be granted rights to Projects only but would still be able to see the cross-functional report?
    Thanks,
    Sanjib Manna
    Oracle Practice
    IBM Business Consulting Services

    Are you refering to "cross business area" joins? If so, you can have the same folder in multiple business areas. And by granting access to one business area, you grant access to all the folders in there.
    So, if you put the folder "suppliers" in both BA's (do so by choosing "manage folders" from the menu), you only have to grant access to the projects BA.
    Regards,
    Sabine

  • Broken link to Oracle9i Database Globalization Support Guide Release 2 (9.2

    http://otn.oracle.com/documentation/oracle9i.html
    broken link to Oracle9i Database Globalization Support Guide Release 2 (9.2)
    http://download.oracle.com/docs/html/A96529_01/toc.htm
    only appear 404 error message.

    Hi Hannuri,
    I am not encountering this issue. Perhaps is has been resolved. Please confirm if you are still having this problem.
    Thanks and regards,
    Les

  • DCM, Cross Database Comparison shows no results

    Hi Solman Gurus,
    I am trying to setup a Cross Database comparison instance to compare entries between CRM and ECC systems. While I can perform the setup, the results show empty when the instance runs. I have attached screen shots to walk through all the config. Here are the high level steps.
    1. Setup Comparison Object - Defined databases as two different sources. And built a data model to show subsequent mapping between respective columns. Screen shot 1&2.
    2. Setup Comparison Instance - Using the object, defined a Comparison Instance.
    3. Ran results - While the job finishes, it doesn't show any inconsistencies. Screen shot 7.
    Really appreciate your input.
    -Anshul
    PS: As a side note, I am only able to attached 3 screen shots and then  the upload button disappears. Do you know if there is a limit on how many files can be uploaded. I understand they have to be less than 1MB in size.

    Here are all the attachments.

Maybe you are looking for

  • Connect Air to iMac

    Hello! Device #1: 21" iMac - Mini Displayport Device #2: 13" MacBook Air - Thunderbolt Port After I bought the Air, which has better performance, I have been barely using the iMac - unless I specifically need the bigger display. Anyway, I thought abo

  • Is there a way I can have my form calculate a total time from beginning and ending time?

    Is there a way I can have my form calculate a total time from beginning and ending time?

  • Lightroom (Vista):  Reversed/Mirrored Images in Preview!

    New user to Lightroom 1.2 here using a Vista PC. When I connected the camera (Canon G9 or Canon SD870is) to my PC via the USB, Lightroom was already opened (as recommended by the Kelby Lightroom book). At this point, a pop up dialog box opens up and

  • RVS 4000 Drops LAN devices

    I recently updated my network with the following: RVS 4000 v1.3.2.0 - Linksys by Cisco version SG200-26 AP541N [WAP] All devices have the latest version of firmware. Users only connect laptops via wireless, they are a mix of MAC and Windows users, de

  • RAC Reboot Error

    Hi all, Our RAC site has 5 nodes on SuseLinux . It's running smooth since 2009 . Suddenly , Power failure for Node5 , and then all other nodes reboot at the sametime ! It bursts out usually while UPS is out -of service . Everytime , one node down and