Tagged Questions
0
votes
1answer
48 views
how to make changes in another Database
We have some hundreds of tables that contain thousands of records in an Oracle database. Now we are going to install a cloud database for Oracle which will contain all the tables in Oracle. Now if we ...
-1
votes
1answer
31 views
Looking for an alternative to SSMA [closed]
I'm looking an alternative to SSMA, perhaps some tool able to change the data before to me migrated, could you please suggest one?
3
votes
1answer
304 views
SSIS Truncate/Delete all rows and Reinsert versus Insert/Update the delta
I need to write a SSIS package to import data from approximately 1400 tables each containing several millions of records from Oracle to SQL Server every after 15 days. Which approach is recommended:
...
2
votes
2answers
168 views
How to import selective tables using SSIS based on custom (e.g.XML) file
I am having about 1200 tables in my oracle database and need to import them to SQL Server database. But I would like to configure the import in such a way that at any given import, I should be able to ...
0
votes
3answers
113 views
Moving millions of records between Oracle and MSSQL
I have an Oracle database with a table (30 columns, no BLOBs or LOBs) that has approx. 50 million records. I need to move the data into MSSQL. Table structure will remain the same on the MSSQL side. ...
0
votes
1answer
53 views
Oracle Database Migration - Triggers Related
We had been migrating a data dump from one db instance to another(both being oracle 11gR2). We experience that triggers in the destination db instance tables are either invalid or not migrated and we ...
0
votes
0answers
168 views
migrating data from MySQL To Oracle using PHP
This Question is not a code based question its rather a theoretical one,
We have 2 things running, an oracle database server running at our home office, and a php MySQL website hosted on goDaddy, now ...
0
votes
0answers
285 views
OracleBulkCopy in ODP.NET does not work when Oracle column name has spaces
I am using OracleBulkCopy class to move data to Oracle Server from a C# DataTable.
Things are fine as long as the column name in Oracle does not have a space in it.
(The column name in the datatable ...
0
votes
2answers
851 views
Import oracle dump to PostgreSQL
I have a plain text not oracle binary dump. How can I import this to postgres? is there tools available for this out there? or is there some other one, anyone did this before?
What I though is to ...
3
votes
2answers
2k views
How to update a TIMESTAMP column to TIMESTAMP WITH TIME ZONE in Oracle
I have a pair of columns that were unfortunately defined incorrectly as TIMESTAMP(6) instead of TIMESTAMP(6) WITH TIME ZONE. I would like to migrate those columns from the old, wrong datatype to the ...
2
votes
1answer
1k views
Migrate MySQL database to Oracle 11g with SQL Developer 3
I try to migrate a sample database from mysql to Oracle 11g using SQL developer. I go through some online tutorial and follow each steps but I don't know why there is no data show up in the target ...
2
votes
1answer
521 views
Oracle SecureFile
In my current workplace, an existing app is being replaced by a new 3rd party app. The database of the existing app, in Oracle 10g, needs to migrated. The existing app stored various documents as ...
0
votes
0answers
223 views
Issues migrating from Oracle to Sql server 2008
We are migrating a Oracle database to SQL Server 2008
In Oracle I got a number column for identitying boolean types, eg col name is IsInd
In the C# code I have defined a property like
public int ...
1
vote
1answer
82 views
Migration script for splitting rows between table of different schemas
I have a table which contains the following columns and I am trying to split it as follows. How do I write a migration script for the following transformation in Oracle
source:
create table abc (id ...
0
votes
1answer
179 views
Trouble using MS Access to migrate data between Oracle databases that contain blobs
Im currently trying to move data from three old database schemas into one new one.
I have been doing this using MS Access's append query function.
Everything has gone pretty smoothly until I tried to ...
-1
votes
1answer
103 views
Fastest machine for data migration using Oracle for Windows? [closed]
We are currently migrating our database from an in-house developed software to a vendor solution. Both softwares run under Windows and use an UNIX-based database.
There is about 25 GB of data and a ...
5
votes
2answers
327 views
Oracle date corruption during update
I'm migrating some data from one oracle schema/table to a new schema/table on the same database.
The migration script does the following:
create table newtable as select
...
cast(ACTIVITYDATE as ...
4
votes
1answer
732 views
use c# to copy table data from oracle to SQL Server?
Could you kindly tell me whether there is a most convenient way to copy table data from oracle to SQL Server?
My only idea is iterate all rows and do insert operation. That means i should write lots ...
3
votes
1answer
2k views
Moving data between different servers in oracle
I'm new to Oracle, and I am working on moving specific data from a DB on one server to the DB on another server.
The two DBs have the same schema, but I want to pull specific columns referenced by ...
0
votes
2answers
73 views
transferring data from my database to my friends database
Just created a database in my own MySQL server. Now I want to transfer the data from my MySQL server to one of my friend's MySQL server.
Any idea how this can be done?
Also, how would I do this if I ...
1
vote
1answer
548 views
What would be the best method to migrate Oracle database to MS Access using Java?
This might be a very basic question, but I could use some help with this from the experts here at StackOverflow.
I am just brainstorming and weighing all the options available. So, I do not need ...
3
votes
2answers
413 views
Data migration in Django
We have a requirement to export the data from a Oracle db and load the exported data to the django models. The models in django are constructed manually based on the the same Oracle tables(same ...
1
vote
5answers
787 views
Moving large amounts of data from one database to another in chunks
I have a table with atleast 12 million rows of data in a table that looks like this:
Id (varchar(10) | Image (varbinary(max)
---------------- -------------------------
X123456789 | 0x....
...
4
votes
4answers
6k views
Does anyone have a sample data migration script (Oracle 10g to Oracle 10g, but different schemas)?
I am trying to write a data migration pl/sql script to transfer some of the data in one schema to a different schema on another server. The second database started as a subset of the original ...
0
votes
2answers
169 views
Help to improve a migration program
We have 200+ views in Oracle that should be transfomed to 200+ flat files with fixed length fields.
Hoping to get ideas to do a better design of the following migration routine.
The prototype of ...
20
votes
6answers
14k views
How to group by week in MySQL?
Oracle's table server offers a built-in function, TRUNC(timestamp,'DY'). This function converts any timestamp to midnight on the previous Sunday. What's the best way to do this in MySQL?
Oracle also ...
1
vote
4answers
2k views
generate database & tables schema (ddl) on Oracle pl-sql
Anyone have a PL-SQL statement that i can use to generate database & tables schema for specific database on Oracle 10g? I need the schema in .sql file and if possible compatible with ANSI-92/99 ...
0
votes
4answers
1k views
Move Data from Oracle to SQL Server
I would like to copy parts of an Oracle DB to a SQL Server DB. I need to move the data because the Oracle box is being decommissioned. I only need the data for reference purposes so don't need ...
1
vote
1answer
253 views
Oracle: Normalizing data during migration
I have a table with a lot of repeated data that I'd like to refactor as 3 tables.
Current structure looks like:
meeting_desc
meeting_date
topic_desc
...
And the data in the current_table looks ...