How to extract data from SQL server in the FDM

Hi Experts

How to extract data from a SQL server HFM to another SQL Server using scripts for integration in FDQM?

concerning

Dev

Could you clarify why you want to do this?

If you try to synchronize two databases (apps) to have a backup or something running in a development environment, I suggest configuring replication between two databases. It would be much more effective to do it at the SQL Server level through the application of FDM, IMHO.

Charles

Tags: Business Intelligence

Similar Questions

  • How to extract data from a signed pdf that was sent to me.

    I can extract data from a PDF file that is not signed, but how to extract data from a signed PDF? Exporting data option does not work once it is signed. Specifically, I want to combine the data into a csv file, but a PDF signed does not to me.

    Hi evanb92625060,

    It is not possible to extract (using Acrobat |) Collection and management of the PDF to form data) data from a signed PDF form is that it locks all fields in the form.

    Kind regards
    Nicos

  • Loading data to SQL server for the Oracle database

    I want to create a table in oracle db table in sql server. Table is huge that he has obtained the documents 97,456,789.
    I created the link (HS) db in the oracle database that points to the sql server. I choose this oracle db on the link table.

    Select * from 'dbo '. "T1@dblink;

    I shot below to create the table.
    create table t2 nologging parallel (degree = 3) as select * from 'dbo '. "T1@dblink;
    and its taking a long time... but its operation...

    is there any other method to do this and and fill the table in oracle db faster.

    Please notify. Thank you.

    vhiware wrote:
    create table t2 nologging parallel (degree = 3) as select * from 'dbo '. "T1@dblink;
    and its taking a long time... but its operation...

    I doubt that parallel processing will be used because it is unique to Oracle (using rowid varies in general) and not SQL-Server.

    is there any other method to do this and and fill the table in oracle db faster.

    Part of the performance overhead is to pull that data from SQL Server to Oracle in the whole of the liaison network between them. This can be accelerated by compressing the data first - and who then transfer them over the network.

    For example: using + bcp + to export the data in the SQL Server box to a CSV file, compress/zip file, scp/sftp file Oracle and then to unzip there. In parallel and direct treatment of load can now be done using SQL * Loader to load the CSV file into Oracle.

    If it is a basic Linux/Unix system, the process of decompression/unzip can be run in parallel with the SQL * process Loader by creating a pipe between the two – where the decompression process writes data uncompressed in the pipe and SQL * Loader reads and loads the data that is available through the pipe.

    Otherwise you are PQ own transformation. Assume that the data is date varies. You can create a procedure on Oracle that looks like this:
    {code}
    create or replace procedure as copyday (day) is
    Start
    Insert / * + append * / into local_tab select * from remote_tab@remotedb where col_day = day;
    -Add logging info, validation, etc.
    end;
    {code}

    You can now start 10 or more of these different days and run it in the background using DBMS_JOB.

  • Extraction of data from SQL Server 2000.

    Salvation Group

    We have a database of Oracle 9i r2 on AIX.

    Is required to extract data from a SQL Server 2000 Database under Microsoft Windows 2003, through SQL sentences.

    Is this possible?

    If yes how?

    Thanks in advance.

    user12215372 wrote:
    Salvation Group

    We have a database of Oracle 9i r2 on AIX.

    Is required to extract data from a SQL Server 2000 Database under Microsoft Windows 2003, through SQL sentences.

    http://www.Oracle.com/pls/db112/search?remark=quick_search&Word=transparent+gateway

  • How only migrate data between SQL Server 2008 Oracle 11?

    According to our requirement, we only have to migrate data from a SQL Server database to an existence
    Oracle database user.
    (1) I tried to do with the wizard of Migration SQL Developer 3.0.04, but find a problem.
    My SQL Server database name is SCDS41P2 and my Oracle database user name is CDS41P2;
    When I used SQL Developer move offline data by the Migration Wizard, I found all the oracle user
    name in movedata files who obtained by running the Migration Wizard
    is dbo_SCDS41P2. If the Oracle user name is not the same as my Oracle username existed.
    the data cannot be moved to my user Oracle existed when I run oracle_ctl.bat in the command line window.
    So I had to change the Oracle username in all the movedata files, but it is difficult to change because there are a lot of tables in
    databases. So could you please tell me how to get the movedata files which is the name of user oracle in them my
    WHEREAS Oracle user name?

    (2) I also tried to use the "copy to Oracle" to copy the data to SQL Server database tables
    the user database was Oracle. When you click on 'copy to Oracle', I selected the option 'Include data' and 'replace '.
    But I found some tables cannot be copied, the error info is as below:
    SPSSCMOR_CONTROLTABLE table failed. Message: ORA-00955: name is already used by an existing object

    Could you please tell me how to deal with this kind of mistake?

    Thank you!

    Published by: 870587 on July 6, 2011 02:57

    Hello
    After following with development the following should work too-

    1 use the migration option to capture and convert the SQL * database server
    2. go in SQL * Developer and remove the converted model.
    3. click on the captured model and choose 'convert '.
    4. click Next and you should get a screen with 2 options - "Data Type Mapping" and "Object Naming.
    5. choose "Object Naming" and scroll down the list until you see the name of the user who will be transformed. For example, in my test, I got the names scott_test and dbo_test - where the owners are 'scott' and 'dba' and 'test' was the name of the database.
    6. change the name of oner_database to just owner - scott_test to scott
    7 complete the conversion process and the owners must be created without the name of the database.
    8. you should now be able to generate the SQL * scripts of charger with only the name of the owner in the CTL files.

    Please try this and let us know if it works for you.

    Kind regards
    Mike

  • How to extract data from the APEX report with stored procedure?

    Hi all

    I am doing a report at the APEX. the user selects two dates and click on the GO button - I have a stored procedure linked to this region of outcome for the stored procedure is called.

    my stored procedure does the following-

    using dates specified (IN) I do question and put data in a table (this painting was created only for this report).

    I want to show all the data that I entered in the table on my APEX report the same procedure call. can I use Ref cursor return? How to do this?

    Currently, I use another button in the APEX that basically retrieves all the data from table. Basically, the user clicks a button to generate the report and then another button for the report. which is not desirable at all :(


    I m using APEX 3.1.2.00.02 and Oracle 10 database.

    pls let me know if you need more clarification of the problem. Thanks in advance.

    Kind regards

    Probashi

    Published by: porobashi on May 19, 2009 14:53

    APEX to base a report out of a function that returns the sql code... Your current code goes against a Ref cursor returns the values...

    See this thread regarding taking a ref cursor and wrapping it in a function to channel out as a 'table' (use a cast to cast tabular function vale)...

    (VERY COOL STUFF HERE!)

    Re: Tyring to dynamically create the SQL statement for a calendar of SQL

    Thank you

    Tony Miller
    Webster, TX

  • How to extract data from SAP and COBOL using ODI

    Hi people,

    Can you please let me know the procedures in ODI to extract data from SAP and COBOL?

    Thank you all for the help.

    Hello

    You can download the Patch 8571830 to Oracle metalink.

    It has a new technology 'SAP ABAP' and KMs to extract and load data-
    RKM SAP ERP and SAP to Oracle ERP LKM.

    Thank you

  • Extract data from SQL to Pivot Table/CUBE database vFoglight?

    Our CIO request hourly data so he can create a history of our virtual environment using the data collected from vFoglight the BODs to attend so that they can see ho are we utulizing the new environment, they allowed us to buy. I've created a report for him but he won't have to copy and paste data in an excel file, every hour, it's short.

    It looks like this:

    dnsName Name Use (%)
    ESXi Server 1 Memory 42
    ESXi Server 2 Memory 37

    So is there a way to allow Excel to connect to SQL Server and extract this data so that it can organize itself? Or can we write a report that displays data on time as follows?

    I.E.

    01:00 - 42%

    02:00 - 39%

    03:00 - 41%

    Hi Morgan,.

    There are a few examples of the extraction of metrics data formatted in Foglight using command-line scripts in the blog article Foglight Reporting using queries metric or Groovy to http://en.community.dell.com/techcenter/performance-monitoring/foglight-administrators/w/admins-wiki/5654.foglight-reporting-using-metric-queries-or-groovy

    I hope this will give you some ideas.

    Kind regards

    Brian Wheeldon

  • Need to transfer data from sql server at EBS

    I need to transfer data from Mirco Soft SQL server database Oracle (EBS).

    Please guide me how can I achieve this milestone in best way.

    Please provide the price of licenses of the Golden Gate and other product adapted SQL SERVER GATEWAY ect


    Thanks in advance

    There are a lot of options

    1 using SQL Server linked server is so easy
    http://www.mssqltips.com/sqlservertip/1433/how-to-setup-linked-servers-for-SQL-Server-and-Oracle-64-bit-client/
    2. use SSIS
    http://www.mssqltips.com/sqlservertip/2011/export-SQL-Server-data-to-Oracle-using-SSIS/
    3. using sqldeveloper
    http://St-curriculum.Oracle.com/OBE/DB/hol08/sqldev_migration/MSSQLServer/migrate_microsoft_sqlserver_otn.htm#T9

    hope this helps,

    concerning
    http://www.oracleracexpert.com
    ORA-19755 at the start of the recovery/DB
    | http://www.oracleracexpert.com/2009/09/ora-19755-could-not-open-change.html
    Error ORA-07445 and the reasons for which it
    http://www.oracleracexpert.com/2009/08/ora-07445-error.html

  • How to extract data from waveform

    I have prepared a VI for acquisition and analysis. I have data from NI 9203 manuplate (power source). I have to use a lot of channels and more than 1 sample of a channel so Daqmx read vi out of waveform module and it is not a choice for table 1 d. How can I this form to scale data and display 2 diffferent scale given in a graphic waveform?

    The DAQmx Read returns an array of waveforms.  Each waveform is t0, dt, Y components and optional attributes.  See the palette of waveform for tools to extract the components and build waveforms.

    To make your scaling that you do these things:

    1. Select the waveform you want to scale by using the Index table or index of waveform Array.vi.

    2. download the component Y of the selected waveform.

    3. resize it if Y' = m * Y = b, where is the original painting and the Y' is the matrix to scale.  You can use the standard digital functions for * and + because they work for arrays and scalars.

    4 build a new waveform using Y'.

    Lynn

  • JDeveloper 11.1.1.2.0 - Panel dashboard with data from SQL Server 2008

    Hi all

    I use JDeveloper 11.1.1.2.0 and trying to create a cross-application dashboard. This dashboard would show 2 group of data from an Oracle database (already finished it) and two from the Group of data from a SQL Server 2008 database.

    I managed to install a SQL Server 2008 database locally on my machine. I downloaded the JDBC drivers on the Microsoft site and I have two JAR files:
    * sqljdbc.jar
    * sqljdbc4.jar

    I created a SQL Server login in Control Panel connections JDeveloper and can I query my database successfully.

    I created a new module of the application and define his connection for a JDBC connection with identification information specified on the Connections tab. I then added the two JAR files as libraries in the model project and
    has run the tester Module of the Application. This succesfully shows some records.

    In the draft opinion, I created a new page and dumped the View object in a table. I then go to run the page and get an error related to the drivier JDBC is not found. I read a few posts on add to Weblogic lib files and edit the startup scripts, but can someone give me a definitive solution to work? I also tried to change my Application Module using a data source, but I also have the same problem the Weblogic console (it cannot create a data source for SQL SERVER because it doesn't have the drivers).

    Any help is greatly appreciated.

    Thank you

    The built-in driver MSSQL weblogic.jdbc.sqlserver.SQLServerDriver class is packaged in \wlserver_10.3\server\lib\wlsqlserver.jar

  • Get data from SQL Server to a different server

    Before I dive into that, I want to do this is possible and relatively painless :)

    My Flex web application is hosted on a server (let's call it server01) which is the web server, and I have a database of SQL Server 2000 on another server (server05), that is not a web server. In the Flex application, I want to fill a ComboBox with data from a table in SQL Server to server05. Is it possible even if they are on different servers and server05 has web access? Thank you.

    "Guddie" wrote in message
    News:gf1ukm$T0M$1@forums. Macromedia.com...
    > Before I dive into that, I want to make sure that it is possible and relatively
    > painless :)
    >
    > My Flex web app is hosted on a server (let's call it server01) which is the
    > web
    > server and I have a database of SQL Server 2000 on a different server
    > (server05).
    > is not a web server. In the Flex application, I want to fill a
    > ComboBox
    > using data from a table in SQL Server to server05. Is it still possible
    > If
    > they are on different servers and server05 has web access? Thank you.

    If dad server01 access server05, then it can make calls for you.

    HTH;

    Amy

  • How to extract data from your laptop with crushed Windows Vista without restoring to the factory settings?

    I ran a few updates, but before you restart the computer, I deleted many files.

    The result is that my Vista does not start, and only offered solution is to restore to factory State, which is not acceptable for me because I need data from the HARD drive.
    Y at - it an easy way to recover data from the HARD drive, or should I contact? Thank you.

    Need help on MS Answers was my last option before calling a service.

    But, luckily, I found a way. I just change the settings in the BIOS for SATA, Vista started, I restored some of the deleted files, and voila - it worked. Another reboot, BIOS have been changed on the previous settings, and now it works perfectly.

  • How can I connect to SQL Server with the Muse?

    I want to query items from database and load it to the front end. Is there a way that muse can connect to the sql server database?

    It is not yet possible for Muse. Muse only creates .html pages. Connection to a database would require some php or other scripting to bind the data. It is beyond the scope of Muse and I don't see what is happening for a while.

  • How to load data from matrix report in the base using ODI table data

    Hello

    How to load matrix report data in the base table data using oracle Data Integrator?

    Description of the requirement:

    This is the data from matrix report:
    JOB                       DEPT10                DEPT20  
    ___________________________ _____________
    ANALYST                                           6000
    CLERK                   1300                     1900 
    Need to convert it to the format below:
    JOB                             Dept                        Salary
    _____________________________________________
    ANALYST                  DEPT10      
    ANALYST                  DEPT20                     6000
    CLERK                       DEPT10                    1300
    CLERK                       DEPT20                    1900
        
    Thank you for your help in advance. Let me know if any other explanation is needed.

    Your list seems to be a bit restrictive, you can do much more with the procedures of ODI.

    If you create the new procedure and add a step. In the 'source' tab command you define technology and pattern according to your source database. Use the unpivot operator as described in the link, please, instead of using "SELECT *' use the column names and aliases for example:"

    SELECT workstation,
    deptsal as deptsal,
    saldesc as saledesc
    OF pivoted_data
    UNPIVOT)
    deptsal-<-->
    FOR saldesc-<-->
    IN (d10_sal, d20_sal, d30_sal, d40_sal).<-->
    )

    Then in your tab 'command on target' defined technology and drawing on your target db, then put your INSERT statement for example:

    INSERT INTO job_sales
    (employment,
    deptsal,
    saledesc
    )
    VALUES
    (
    : job,.
    : deptsal,.
    : saledesc
    )

    That's why you use bind variables from source to load data into the target.

    Obviously if the source and target table is in the same database, you can have it all in a single statement to the "command on target' as

    INSERT INTO job_sales
    (employment,
    deptsal,
    saledesc
    )
    SELECT workstation,
    deptsal as deptsal,
    saldesc as saledesc
    OF pivoted_data
    UNPIVOT)
    deptsal-<-->
    FOR saldesc-<-->
    IN (d10_sal, d20_sal, d30_sal, d40_sal).<-->
    )

    also assign the log count "Insert" on the tab corresponding to your INSERT statement, so that you know how many rows you insert into the table.

    I hope this helps.

    BUT remember that this feature is out in Oracle 11 g.

Maybe you are looking for

  • Satellite Pro A10 does not start

    Hello My laptop died this morning. When I press the POWER ON button, the power light is on, but nothing else happens. The screen is dark and I can't hear the fan running. Please can someone help?

  • Video performance, Windows XP and Windows 7

    I tried to watch videos HD with Windows 7, but it was not very good. The image would stop and start then the audio rolled on. I went back to XP and is surprised that the 1280 x 720 mkv file worked fine under XP. It was not perfect, there were a coupl

  • Satellite Pro U400 - cannot install VAP on Vista 64-bit

    HelloSince I bought 4GB of RAM for my Satellite Pro U400 PSU45E, I installed vista Business 64-bit, with all drivers and bios 64 bit found on the toshiba site.easy, with the exception of the "value added package 1.1.19", whenever I try to install I g

  • Satellite A100-926: unknown device bus pci7; device: 6; function: 3

    Hello world I have an A100-926, device management, it shows me that there is an unknown pci device on the bus 7. function 3, but there is no way to know what is it and how can I install it because if I Reinstall driver it don't think the right on the

  • Satellite L645D-S4025 - need drivers for the SATA RAID controller

    Basically, I need the drivers to load my operating system, because at the time where he leans on my hard drive as unknown. I get BootMGR is missing error, so when I put my Windows 7 disc and go fix it is unclear what operating system is installed. So