Managing sql server database from sql lite or vice versa - sql-server

I'm a newbie,Can you please specify any tools or methods for managing sql server database from sqlite or vice versa...or both,if possible..

What do you mean by managing? Neither MS SQL Server nor SQLite is a manager for SQL databases and specially not managers for each others.
For managing a SQL Server database, you can use SQL Server Management Studio.
For managing a SQLite database, you can use for example Firefox SQLite manager plugin
See also how to export from SQLite to SQL Server

Related

SQL Server to server synchronization

I want to synchronize my local SQL Server database to the shared hosting SQL Server database from Mochahost.com. What will be required to do this? Or is there any easy way to synchronize this SQL Server database with a MySQL database? Please give me suggestions.
SymmetricDS supports replication to and from MSSQL Server and MySQL. There is an open source version as well as a supported professional version at Jumpmind.

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?

Access SQL Server 2014 from Oracle database 12c

How can I access or connect to Sql Server 2014 Enterprise from Oracle 12c Enterprise.
I want to connect so that I can run DML queries on SQL Server 2014 tables, EXECUTE procedures and so on.
Going from Oracle to SQL Server is called a "Database Link"
Going from SQL Server to Oracle uses a "Linked Server".
Somebody has explained it over at Stack Exchange.
https://dba.stackexchange.com/questions/15708/how-to-create-oracle-linked-server-in-oracle-server-itself
You can refer to Oracle's Heterogeneous Connectivity documentation. There's a guide for each of several different remote data sources. You'll want to focus on the ones for ODBC or SQL Server. If I remember correctly the Heterogeneous database gateway for ODBC is included with standard database licensing, but Heterogeneous database gateway for SQL Server requires additional licensing.

SQL Server 2005 and 2008 in conjunction

Is it recommended to use two versions of SQL Server (2005 and 2008) for storing data of an application. We have a situation where we have an existing web application consuming SQL server 2005 as a database. Some enhancements in the application required us to solution a FILESTREAM data store. Now we have our data in SQL Server 2005 and associated FILESTREAM data in SQL Server 2008. Being very new to SQL Server I would like to ascertain how bad is this in terms of performance? How can we achieve atomicity across both the database versions, is it via using a linked server or some other mechanism? Any alternative solutions would be fine except that we just cannot migrate the existing application to SQL Server 2008.
To keep your transactions ACID, you can use distributed transactions at a stored procedure level, or from a code level using DTC (e.g. via a .net TransactionScope). DTC would need to be present on both SQL Servers, and on your App Server as well if you do the ACID from there. There is some overhead with DTC
Edit : You will also need to link the servers with sp_addlinkedserver and provide credentials with sp_addlinkedsrvlogin

copying oracle to sqlserver 2005 jdbc

Is there any way of copying a database from oracle to sqlserver 2005? Thanks
You can migrate from Oracle to SQL Server with Microsoft's SQL Server Migration Assistant. It is available both to SQL Server 2005 and 2008.
If you have lots of (complicated) stored procedures and such, the migration might get a bit tedious. I have only experience with databases with simple procedures and could just rewrite them and do the data copy to empty tables in SQL Server with the import functionality using Oracle connector (usable from SQL Server if you have installed Oracle client tools to the SQL Server machine). This way I didn't even need to use the Migration Assistant tool.

Resources