Developer instance of SSMS with SSRS for Mac - sql

I would like to use MS SQL Management Studio and Reporting Services, but I have a Macbook. Can I run SSMS with SSRS in Azure or AWS?
*Edited to not ask for a recommendation

SSMS(SSRS) only support Windows now.
I think you can think about using Azure Data Studio. Previously released under the preview name SQL Operations Studio, SQL Operations Studio tool can be a good option, it provides enough function like security, linked server and database manager, it is enough to use if you only use it for development.
Hope this helps.

Related

Where can I find the limitations of SQL Express in SQL Management Studio?

I'm working on a PC which I'm not sure whether the SQL Server installed is either the Express Version or the Full Version. I am aware that the express editions have limitation og 1GB Ram, 4GB Hard DIsk and etc.
Where can I find this information in SQL Management Studio?
Thank you for your help.
If you go to Help|About in Management Studio, it may tell you whether you have the Express edition of Management Studio. Another way to tell is the amount of items you have under Object Explorer - for example the Express Edition of Management Studio does not have a SQL Server Agent node at the top level under a server.
Management Studio can't tell you what version the engine is without running a query against the instance you're talking about (since you can use the same copy of Management Studio to connect to many different local and remote instances). Connect to the instance and run this query:
SELECT SERVERPROPERTY('Edition');
If you can't figure out how to connect to the instance, go to Control Panel > Administrative Tools > Services and tell us what you see under SQL Server or MSSQL.
I think this should do it:
select ##VERSION

Visual Studio database project won't deploy to SQL Azure

I've ran into problem very similar to this. I have a .dbproj Visual Studio database project. It deploys just fine in SQL Server Express. Now I want to deploy it to SQL Azure - I change the connection parameters but deployment fails with the following text:
C:\Program Files\MSBuild\Microsoft\VisualStudio\v10.0\TeamData\Microsoft.Data.Schema.TSqlTasks.targets(120,5): Error Deploy01234: The target database schema provider could not be determined. Deployment cannot continue.
Done executing task "SqlDeployTask" -- FAILED.
Is deploying .dbproj projects to SQL Azure supported? How do I make Visual Studio deploy the database into SQL Azure? What are other ways to achieve more or less the same results except recreating the database manually using Azure portal?
If you are using Visual Studio 2012, you can now create a Database project and go to Properties - set its Target Platform to SQL Azure in Project Settings tab. Also you can configure the setting for dacpac output. Use this file to import directly as a new SQL Azure database.
As far as I know, Database projects are still not supported by Windows Azure. You can deploy the project to a local SQL server and then use the "Generate Scripts" feature to port the database to SQL Azure. See this link.
An easy solution is to create the database locally and use the SQL Azure Migration Wizard to do the migration up to SQL Azure. It works very well in just a few clicks (and will fix common errors).
Database projects don't work with SQL Azure. What I do is before deploying, create a brand new database on local server (to ensure it is up to date with no dev scripts), and then sync that database to Azure with RedGate SQL Compare. I do a backup first with RedGate SQL Azure Backup.
When we first built DB projects, SQLAzure was still going through its identity crisis and didn't know what it wanted to be. ;)
DBProjects support a significant superset of capabilities vs. SQLAzure. Therefore, it's quite possible that it'll create scripts that won't run against SQLAzure.
I know that the team who took-over the DBProject tooling were looking at restricting the database project generators to output SQLAzure-compatible scripts, but I don't know how far they got or whether they decided to proceed.
I echo dunnry's suggestion above and use the SQL Azure Migration Wizard or Jeremy's and use SQL 2008 R2 and generate Azure-compatible scripts.

SQL Azure database using SQL Server Management Studio

I've been trying to work out whether it's possible to manage (i.e. add tables, modify them, create stored procedures) a SQL Azure database using some kind of GUI like SSMS and I keep coming up against different answers.
I found a post from the end of 2009 saying that it would be supported in SSMS but I'm not sure if that includes the Express version? Does anybody know what the most recent update of the express version is and whether it supports it?
I think I'm right in saying that it can't be done in Visual Web Developer 2010 (and I can't afford the full fat VS2010).
I'm prepared to consider alternatives though if anybody knows any full features GUI tools that work with SQL azure and I don't mind paying for a commercial license if it's not too expensive.
Thanks.
Yes, SQL Server 2008 R2's Management Studio does support working with SQL Azure databases.
See:
Getting Started with SQL Azure Development
There are a couple of options
1) You can use SSMS (get the free version by downloading SQL Express v2008 or greater) with advanced services. This will give you SSMS. You can then connect to SQL Azure using SSMS. However - there is a limited set of functionality available via this tool.
2) You can use SSDT (stand-alone for free) or from within VS2010 SP1 or greater. Again, you can connect to SQL Azure, but there are some restrictions on what you can do.
I am using the SQL Express on AWS RDS (free usage tier) myself lately (and connecting via SSMS or SSDT). I prefer their implementation of SQL Server in the cloud to Microsoft's implementation of SQL Azure.

Need a good SQL Server Management GUI Tool?

Is there any options as a GUI to manage Microsoft SQL Server 2005 express except Microsoft SQL Server Management Studio Express.
Winxp used. Thanks.
SQuirreL
For full control then only SSMS will do because it will use SMO etc to do stuff that other non-MS tools won't. Or expensive 3rd party tools.

SQL Azure via Visual Studio

Does anyone know when a tool will be available to manage a SQL Azure database from within Visual Studio or SQL Enterprise Manager?
At present one can only cannect via:
1) SQL Management Studio (SSMS)
(The cancel and connect via new query method)
2) Azure Storage Manager: http://azurestoragemanager.codeplex.com/
3) SQL Azure Migration Wizard: http://sqlazuremw.codeplex.com/
4) Custom Application
I have gone down the custom route, an application that basically runs scripts within different folders to Update Tables and Stored Procesures etc.
Plus:
SQL Azure Explorer on Codeplex - free and with source code (addin for VS2010 Beta1)
Cerebrata Cloud Storage Studio - Winforms app to browse SQL Azure
Cerebrata Omega.MSSQL browser-based admin of SQL Server including SQL Azure (see announcement in blog post here)
Marc
Few corrections below:
Cloud Storage Studio is for managing Windows Azure Storage (Tables, Blobs & Queues) and not SQL Azure.
Omega.MSSQL is for managing SQL Server (2008/2005/2000) via a browser based interface (IE only). We customized Omega.MSSQL to work against SQL Azure. That customized version is available online only. To read more about it and access the application please visit this link: http://cerebrata.com/Blog/post/Browser-based-SQL-Azure-Explorer.aspx
Haven't tried personally, but according to the SQL Azure team the November CTP of SQL Server 2008 R2 has a version of Management Studio that will allow direct connections to SQL Azure without having to do the cancel/connect workaround:
http://blogs.msdn.com/ssds/archive/2009/11/10/9920168.aspx