Change report tables from Access 2000 to SQL Compact 3.5

Post Author: AllenF
CA Forum: General
I'm using CR10 that ships with Visual Studio 2008.  I want to upgrade several reasonably complicated reports to use SQL Server Compact 3.5 data.  The reports are currently using Access 2000 data.  Is there a simple way to go about this?  I REALLY don't want to have to recreate these reports.

Post Author: AllenF
CA Forum: General
I'm using CR10 that ships with Visual Studio 2008.  I want to upgrade several reasonably complicated reports to use SQL Server Compact 3.5 data.  The reports are currently using Access 2000 data.  Is there a simple way to go about this?  I REALLY don't want to have to recreate these reports.

Similar Messages

  • Pass SQL from Access 2000 to Acrobat

    I have the need to pass dynamic SQL statements (including the use of variables) from Access 2000 to an Adobe form.  The Adobe form will then display the data that is gathered by the SQL.  While I am fairly good at Access and SQL, I am just beginning with Acrobat.  The forms are developed and coded in LiveCycle Designer.  The SQL code has the ability to directly access either the linked tables in the Access DB or the data tables on the SQL server.  Thank you for your help and time.

    I did not find the 1.30 plugin. I finally got it to work by fooling oracle into thinking that I had a 9i database installed by manually creating the \oracle\ora91 directory.
    Thanks for your help though!

  • Replication of table from Oracle 10g to sql server 2000

    Could i replicate table from Oracle 10g to sql server online. we have tables with same configuration and if any change happen in oracle 10g or sql server in that table we need to replicate that change to other database.
    What is the solution for this two way replication between sql server and Oracle 10g

    But the tutorial is saying that i will have to install Oracle database on the server already having sql server, is it client or whole database, if it is then it will acquire lot of resource.
    I want to find out that for Heterogenous Service ODBC, we need third party software for ODBC Driver of SQL SERVER for Linux and secondly if we use Transparent Gateway then what are the steps for its configuration.
    I could not find steps of configuration of Transoparent gateway, when i am trying to install Transparent gateway from Universal installer, it is not there. where do i find it , Do i need to purchase it too.

  • How to create table from another in pl/sql

    Hi I need to create a table from another in pl/sql
    How can I do this

    The proper way to do this, is not to do it in PL/SQL. But do it in SQL, something like:
    create table tbl
    as
    select *
      from other_tbl;Doing it in PL/SQL is really slow compared to SQL.
    Yes, if you really want to create a table using PL/SQL then you will need to use DBMS_SQL or EXECUTE IMMEDIATE (Native Dynamic SQL) to do this.

  • Can we change a table from logging to nologging in online?

    Can we change a table from logging to no logging in online?
    Thanks

    Hi,
    i believe no , can also check the doc id:Doc ID 269274.1
    HTH

  • Upgrading from Access 2000 to MS SQL Compact 3.5

    Post Author: AllenF
    CA Forum: Data Connectivity and SQL
    I am using Crystal Reports Basic for Visual Studio 2008.  I was wondering if anyone knows how I can upgrade my current Access 2000 based reports to use MS SQL Compact 3.5.  I'm mostly finished upgrading by application, other than the reports.  Any help is appreciated.

    Post Author: AllenF
    CA Forum: Data Connectivity and SQL
    I am using Crystal Reports Basic for Visual Studio 2008.  I was wondering if anyone knows how I can upgrade my current Access 2000 based reports to use MS SQL Compact 3.5.  I'm mostly finished upgrading by application, other than the reports.  Any help is appreciated.

  • Create and insert into table from Oracle to MS SQL server.

    Hello,
    Oracle Database 11g and Red hat 5
    I have a very different kind of issue. I am handling the ORACLE db(remote db with all the important data). On the other side their is a MS SQL server db(local db with some testing data in it). All the users will access the ORACLE db for the actual processing but for sometime they need to apply some of their own concepts. So they will transfer the data from ORACLE to MS sql server.
    I want to create a code in ORACLE db like a procedure , which will create a table in MS sql server , insert data into it,Also create some metadata table to keep some of my table's info on MS SQL serve db,If the table is present it should append the data, .... like many things ...
    Overall my question is , how can i write a code to make these operation on a remote db, that to these operations are DDL and on MS SQL Server(Non-Oracle) ???
    Please guide me with some ideas or solutions ...
    Also provide if you have some good links to study ...
    thanks in advance.

    I'm not sure why you never visit http://tahiti.oracle.com prior to asking any question. Is it forbidden in your locale? Are you afraid of it? Will your salary be decreased when you visit the documentation?
    http://www.oracle.com/pls/db111/search?word=sql+server&partno=
    should provide sufficient information.
    Your doc question must be considered a violation of Forum Etiquette and an abuse of this forum.
    Sybrand Bakker
    Senior Oracle DBA

  • Loading table from Access, Excel or CSV file

    Hi,
    I would like to know the mechanism of loading a table from an external source such as Access table, Excel sheet, text file containing comma/tab delimited values.
    Can you please indicate me the basic steps to prepare the extraction of the source data and next how to load this data into a target Oracle table?
    Thanks very much in advance.

    If you are using a windows based Oracle server you can locate your files on the server and set them up as external databases using Oracles Heterogeneous Services (HS)... e.g. with Excel workbook...
    1- Go to Control Panel>Administrative Tools>Data Sources (ODBC)>System DSN and create a data source with appropriate driver. Name it EXCL.
    2- In %ORACLE_HOME%\Network\Admin\Tnsnames.ora fie add entry:
    EXCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.12.0.24)(PORT = 1521))
    (CONNECT_DATA =
    (SID = EXCL)
    (HS = OK)
    Here SID is the name of data source that you have just created.
    3- In %ORACLE_HOME%\Network\Admin\Listener.ora file add:
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = <hs_sid>)
    (ORACLE_HOME = <oracle home>)
    under SID_LIST_LISTENER like:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = d:\ORA9DB)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ORA9DB)
    (ORACLE_HOME = d:\ORA9DB)
    (SID_NAME = ORA9DB)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = EXCL)
    (ORACLE_HOME = D:\ora9db)
    Dont forget to reload the listener
    c:\> lsnrctl reload
    4- In %ORACLE_HOME%\hs\admin create init<HS_SID>.ora. For our sid EXCL we create file initexcl.ora.
    In this file set following two parameters:
    HS_FDS_CONNECT_INFO = excl
    HS_FDS_TRACE_LEVEL = 0
    5- Now connect to Oracle database and create database link with following command:
    SQL> CREATE DATABASE LINK excl
    2 USING 'excl'
    3 /
    Database link created.
    Now you can perform query against this database like you would for any remote database.
    SQL> SELECT table_name FROM all_tables@excl;
    TABLE_NAME
    DEPT
    EMP
    With MS Access you are already dealing with a database so the structure is not a problem. If you treat Excel workbooks as a database then they have to conform to a certain layout e.g. each worksheet is in effect a table with the name of the table taken from the worksheet name (be aware that Excel allows 32 characters for sheet names, but Oracle requires no more than 30), on each sheet the first row must contain the column names and all subsequent rows contain the data.
    ;)

  • Permissions error when migrating from Access 2000

    Hi
    I have an Access 2000 database that is pretty small - only has 8 tables, total DB size is < 24MB. I've gone through all the steps of creating the Oracle model etc and all went without a hitch. However, when I come to migrate table data I get the following error:
    Unable to migrate data from source table "tbl Case" to destination table CDSS.tbl_Case : CDSS.tbl_Case; [Microsoft][ODBC Microsoft Access Driver] You do not have the necessary permissions to use the "C:\Customers\Vancouver\CDSS\Database\CDSS.mdb" object. Have your system administrator or the person who created this object establish the appropriate permissions for you.
    There is no security on the Access database so I'm a little unsure as to what is causing this error to occur; does anyone have any ideas?
    Thanks very much

    There is an option in the users guide for switching off any security in Access. This should solve the problem with permissions

  • Unsupported Data Type (migration from Access 2000)

    Hi,
    I'm trying to convert an MS Access 2000 database, which contains a table with 2 'Binary' data type columns.
    The OMWB does not seem to know this Data Type, and the GUI does not allow me to add it. Is there any other way to add this Data Type ??
    I should somehow get it to convert to Oracle RAW.
    Generating the Oracle Model with the 'Binary' type in the xml file generates errors.
    thanx in advance,
    esther

    Log a ticket with support at otn.oracle.com/migration and give details of this. Include a test case to ascertain whether it is a bug or not.
    B

  • How to change report size from A4 to A3 in Report 6i

    I want to change the size of an existing report in Report 6i from A4 to A3 size. How to go about it? Thank in advance.
    Anil chopra

    Hello Anil,
    Have you tried to click on the property palette of the 'Main Section' under 'Layout Model'. There you can set the Report Width and Height.
    -Marilyn

  • Change Report Status from "completed / passed" to "Completed"?

    With Captivate 5, is it possible to change the Report Status from "completed / passed" to "Completed"? The "completed / passed" given is causing issues with my LMS thus need "Completed" only. Is this possible with version 5 or even version 6?
    Thank you in advance for any help!

    Hi There,
    Thank you for reaching Adobe Community.
    You can select the below settings from Edit > Preferences >  Quiz > Reporting panel. You can change the Status representation to Incomplete > Complete.
    Here is the screen shot frm ScormCloud LMS:
    Thanks!

  • Can you find which user changed a table from redolog?

    Is it possible to find which database user that changed a tuple in a table from the redologs?
    Or is the only option to have activated some kind of auditing prior to the change?

    Here is what you can find using flashback transaction query.
    SYS@10G>desc flashback_transaction_query
    Name                                      Null?    Type
    XID                                                RAW(8)
    START_SCN                                          NUMBER
    START_TIMESTAMP                                    DATE
    COMMIT_SCN                                         NUMBER
    COMMIT_TIMESTAMP                                   DATE
    LOGON_USER                                         VARCHAR2(30)
    UNDO_CHANGE#                                       NUMBER
    OPERATION                                          VARCHAR2(32)
    TABLE_NAME                                         VARCHAR2(256)
    TABLE_OWNER                                        VARCHAR2(32)
    ROW_ID                                             VARCHAR2(19)
    UNDO_SQL                                           VARCHAR2(4000)You can see the LOGON_USER which helps if you are using different database accounts for your users. If you are using a single database user for your application you cannot see which specific application user made the change. You need auditing for that.

  • How do I copy a table from Oracle DB to Sql Server 2005 db ?

    Hi , can anyone tell me what the SQL syntax would be for me to copy a table from an ORacle Database over to a SQL SERVER 2005 database ?

    Hi,
    Please look into this link,
    Re: Dump data from SQL Server Database to Oracle
    Thanks

  • Importing Tables From Access

    I know that you can import an existing table from Excel or Word, but can you import from Access? If not, I thought that perhaps a Access table could be converted into a Word document, but upon checking...it doesn't look like that is an option either.
    Any other options, other than spending hours of manually entering all of the Access data into Excel or Word??
    just wonderin',
    Brad

    After receiving your reply, I went back and checked Access again and after much clicking I discovered the External Data tab. From there, I can export to Excel, Word and more.
    It seemed, to me, that Access must export to those formats...but I don't use the programs enough to really know them and locate all of the features......welp...it worked!
    Thanks Gary for your input...it got me back on track
    Brad

Maybe you are looking for