Migration of SQL Server 2012 database to Oracle 12c - sql-server

I'm trying to migrate a SQL Server 2012 database backup file, which I wanted to migrate to Oracle 12c. I tried to use SQL Developer tool for migration using this reference:
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm
The problem is in SQL Developer tool, I didn't see any option where I can generate database capture script for SQL Server 2012, because there is no option which is showing up there.
I'm open for other suggestions as well. the SQL Server is installed on my same system, where I've installed Oracle 12c, so even if there is way by which we can directly connect with SQL Server on my local system.

Hello for migration from SQL SERVER to Oracle. There are many articles are available on web. You can google it. For as one reference use this article and try for migration of data.

Related

Syncing a SQL Server CE database with a regular SQL Server database

There's an Umbraco site that various people been contributing content to. It runs on a hosted domain using a SQL Server Compact edition database for the CMS. It's about to go live and I need to sync the dev database to the live SQL Server instance which is hosted by a third party.
I just ass(u)me(d) that I could attach the .sdf to my local SQL Server and use a commercial tool (Redgate/SQLDelta etc.) to copy it to the live db. This does not seem to be possible. While I have managed to attach the .sdf using Linqpad, I can't connect to it like a regular database.
The best option seems to be to script out the entire database, but this seems like an impossible task using just Linqpad (no flies on Linqpad, obviously - it isn't the tool for such a task). Any less onerous options would be gratefully accepted.
You can use my free "SQL Server Compact Toolbox" Visual Studio extension for this. It can generate a script of the entire SQL Server Compact database, that you can then run against an empty SQL Server database.
In the past I did this kind of scenario wherein I need to copy the data from the SQL Server CE to a SQL Server database. Have you tried adding the .sdf to an ODBC then linked that ODBC to SQL Server?

Unable to retrieve tables from SQL Server using Oracle's sql developer

I am unable to browse SQL Server tables using Oracle's SQL Developer. I am able to connect to SQL Server using SQL Developer, but when I try to expand the database in SQL Server, I get this error:
in newer version (Oracle IDE 19.2.0.206.2117 with Thirty party jtds-1.3.1.jar) of Oracle SQL Developer it is working.
Ivo.

sharepoint 2007 from sql server to oracle

I installed WSS 2007 on one of our test server to see if sharepoint is worth going forward for our group. The problem is, it installed a version of sql server and we are using oracle. So, I will need to move sharepoint from sql server to oracle. We can't use sql server we have to use oracle.
I have two questions:
1. sql server to oracle transition for sharepoint
2. Is there a performance drawback when we move from sql server to oracle with sharepoint.
I tried to look for resources on web but couldn't find much. Any ideas/help would be appreciated.
This is not possible - SharePoint can only run on SQL Server:
Installation Guide for Microsoft Office SharePoint Server 2007
The database server must be running
Microsoft SQL Server 2005 or Microsoft
SQL Server 2000 with the most recent
service pack.
Enterprise Sharepoint? – Port it to Oracle
I have concluded my only real problem
with SharePoint is that you can’t run
it on Oracle.
If you had shown me SharePoint, not
told me it was from Microsoft and said
you can use it with Oracle as a back
end, I am sure my reaction to it would
have been far different.

upsizing ms access 2007 db to sql server 2008

i keep getting an error:
The upsizing wizard does not work with this version of SQL Server to which your access project is connected.
has anyone else seen this issue.
There is another version of the Upsizing Wizard: Migrating to SQL Server 2008
It's called the SQL Server Migration Assistant for Access (SSMA Access) and you can download here.
You can use DBWScript to generate sql scripts, such as CREATE TABLE.

Will a database generated from SQL Server Express work with the main version of SQL?

I want to create a SQL Server Express database on my local machine and then upload it to a website that will be using the full SQL Server software - can I do this ?
The MS SQL Express databases are completely compatible with full versions of MS SQL Server. So just backup and restore.
You certainly can. You have a few options:
Backup and restore
Script everything manually
Database publishing wizard
Microsoft SQL Server Database Publishing Wizard can be found here:
http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
Yes, they are designed to be compatible. You can either script out of the database or use the Backup/Restore functionality built into SQL Server Management Studio. More details on the latter can be found here.
You can move from SQL Express to the full SQL Server quite easily. There's a couple of ways to go about doing this, but the easiest is to back up the databases in question on SQL Express, install the full version of SQL Server, and restore the databases there. Both programs use the same database backup format. However both instances of SQL Server should be configured with the same collation.
A better approach might be to buy SQL Server Developer edition. It's quite cheap and will install on a desktop O/S such as Windows XP. The main advantage over SQL Server Express is that it has all of the features of Enterprise Edition (CLR sprocs, SSIS etc.) and you can develop with this functionality. YMMV as you may or may not need these features.

Resources