Migrating from SYBASE SQLAnywhere 11.0 to SQL Server 2008 R2 Express - sql-server

Hello everyone i have got a project to migrate from SQLAnywhere 11 to any new relational databases for our ship crew web application.The reasons for migrating is cost and support issues.I will need to choose a database which is free and has all features as SQLAnywhere 11.0.
Here is the list of Questions i want to know about SQL Server 2008 R2 express.
Do we have any migration utility to move from SQL Anywhere 11 to SQL Server 2008 R2 express.
How easy is deployment of SQL Server 2008 R2 express from install shield MSI.
Alternative methods to migrate from SQLAnyhere 11 to SQL server 2008 R2 express.
Do management tools come free with express addition. I should be able to defragment and restore the database.
Thank you

There is a SQL Server Migration Assistant (SSMA) for Sybase (v 5.1 was released just this week), but I am not familiar enough with SQL Anywhere to assure you whether, or how well, it works:
http://blogs.msdn.com/b/ssma/archive/2011/07/12/announcing-sql-server-migration-assistant-ssma-v-5-1.aspx
Deployment of SQL Server Express is relatively easy, but I haven't done any work recently incorporating this into a more complex installer.
If you use Express w/Tools or Express w/Advanced Services, they come with Management Studio Express. You can also download this separately:
http://www.microsoft.com/download/en/details.aspx?id=22985
Note that Management Studio Express is missing some of the SSMS functionality, such as managing agent, so if you have to manage other editions you may be better off investing $49 (or less, depending on vendor) into the developer edition, which comes with the full version of SSMS.

Related

R services in SQL Server 2016

Recently, a tech support specialist installed SQL Server 2016 Management Studio in my computer. When I asked about the possibility of using integrated R services in SSMS, he said I need to have stand alone SQL server installed in order to use that feature (which is not going to happen as individual license is pretty expensive).
Can somebody shed some light on using R services from SQL server 2016? Do I really need stand alone SQL server? or there is a workaround?
Thank you
poshan
SQL Server 2016 Management Studio is a client tool that connects to the Microsoft SQL Server 2016. If R-service already installed (as part of setup wizard, if you have chosen Database Engine Services and R-Services (In-Database)), you can connect to the SQL Server and execute R-script from Management Studio setup in your machine.
Some useful documentation:-
https://msdn.microsoft.com/en-us/library/mt696069.aspx

Difference between SQL Server Management Studio and Express

I try to understand the difference between SQL Server Management Studio and SQL Server Management Studio Express
The "full" SQL Server Management Studio is the management GUI (graphical user interface) to work with a SQL Server database and is included in all the paid editions of SQL Server.
For the free SQL Server Express edition, SQL Server Management Studio Express can be downloaded for free from the Microsoft web site (or is include, as well, in the "Express with Tools" edition). As far as I know, as of SQL Server 2012, the two versions are essentially the same and don't have any differences in terms of features or capabilities they offer
Microsoft makes money from licensed SQL Server - it does not make money from Express. So everything about express is going to be crippled in some way.
SSME (SQL Server Management Express) does not have help and does not support any features SQL Server Express does not support - Reporting Services,SQL Server Agent, Analysis Services etc. If you, or your company, cannot afford a licensed version you are stuck with Express but don't expect a go cart to be as good as a car.

Are there glitches with trying to use SQL Server Management Studio 2008 R2 to manage MSSQL 2005 DB instances?

I'm currently using Microsoft SQL Server Management Studio ver. 9.00.4035.00 to manage my SQL Server 2005 (90) compatible databases.
Will I encounter problems should I attempt to upgrade the Management Studio software to SQL Server Management Studio 2008 R2 to manage MSSQL 2005 DB instances? I will not be upgrading the version of the database instance.
My personal expreience says that you wont have any migration issues if you have sql server 2005 db instances. The attach and detach of DB is same in 2008 version. Only thing is, once you use a 2005 instance DB and attach it to 2008 version, it cannot be used with 2005 version again. Apart from that, from functionality point of view, there are no issues, you can continue to use the 2005 version DB on 2008 as normal.
link for moving the DB from 2005 to 2008 -
http://www.packtpub.com/article/moving-a-database-from-sql-server-2005-to-sql-server-2008-in-three-steps
EDIT: Incase you want to move back to 2005 version for same DB instance, I dont think it will be possible except for doing a data export import onto new 2005 DB instance.

Installing and distributing SQL Server without Management Studio

Have developed a small Windows application using SQL Server as its database.
I need to give the installation pack to my customer, and include the required SQL Server 2005 Enterprise Edition.
How can I distribute my database without including Management Studio?
You client is going to have to pay a good amount of money to licence the Enterprise version.
You can either:
give them the SQL2005 Express (which you can redistribute)
get them to use Microsoft's Web Platform Installer
You could also use SQLExpress 2008, the client can download either the x86 or x64 editions via this page. You can't stop them from getting SQL Management Studio if they want to (it can be found here), although i'm unsure if the express version has the query analyzer.
Instead of SQL Server enterprise edition you can give Express edition. Express edition is free to re-distribute and use.
There are 3 installation files in SQL Server 2005 express.
1. Windows Installer
2. SQL Server 2005 express
3. Managment studio express
In your case you can install the first two. However SQL Server can be accessed by command prompt also.
SQL Server management studio is another application and does not come bundled with MS Sql server.
SQL pack should only contain SQL Server express edition and not enterprise edition as that is not free and your client will have to pay for it.

Visual studio 2010 and Sql Server

Do visual studio 2010 include already Sql Server instance, or I need to install Sql Server developer edition to develop an application that need a Sql Server db.
If it installs a Sql Server express edition, it this enough or it's better to have Sql Server developer edition?
I would second that installing the "full" SQL Server Development Edition makes sense if you do serious database development.
However you can have both installed side by side, and having SQL Server Express is very useful for one reason - it supports placing database files in the App_Data folder of ASP.NET applications. While I don't do this for my own projects, it's a very nice feature for demos or open source applications you download from the web: just unzip, start VS, hit F5, and you have a running solution including database. Without SQL Express, you first have to move the MDF file, attach the database, set up user rights, replace the connection strings etc...
The Visual Studio 2010 installer gives you the option of installing SQL Server 2008 Express Edition. This edition of SQL Server is good enough for development purposes but is not intended for production use.
I think the size limitation is not the main issue.
In Sql Server 2008 you have some features in Sql Server Management Studio that aren't available in the Express management Studio or the Express database engine, like:
- suggesting the table and column names (in Query Window)
- Sql profiler
Cor Westra

Resources