azure-sql-database

Cannot connect to SQL Azure using SQL Server Management Studio

江枫思渺然 提交于 2019-12-05 17:19:06
I have create a SQL Azure database on the Azure portal, now I want to connect to it using SQL Server Management Studio. I've set my properties like this: Server Type:Database Engine: Server Name:[mycred].database.windows.net Authentification: SQL Server Authentification username: myusername password: mypassword But when I try to connecting with these properties I get an error: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is

SQL Azure not recognizing my clustered Index

狂风中的少年 提交于 2019-12-05 17:17:19
I get the following error when I try to insert a row into a SQL Azure table. Tables without a clustered index are not supported in this version of SQL Server. Please create a clustered index and try again. My problem is I do have a clustered index on that table. I used SQL Azure MW to generate the Azure SQL Script. Here's what I'm using: IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tblPasswordReset]') AND type in (N'U')) DROP TABLE [dbo].[tblPasswordReset] GO SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id =

Is Azure really conveniant for a medium production website regarding SQL Azure performance, when speed is a critical matter?

邮差的信 提交于 2019-12-05 16:59:46
So i did read a lot about Azure yesterday as i'm considering my plans for the future of my Webapps. The question is whether to migrate or not in 2012 from a dedicated hosting with two networked strong servers (one front for IIS, one for SQL Server 2008). We're talking about ASP.net webapps only, say 10 websites network querying the same database. The pros : i do want to let go the hardware / OS maintenance / crash worries. Azure looks cool on that point. The cons : i read so/so opinions about speed. Especially regarding SQL Azure. Speed is one of the key point of my websites. You click, it

How can i change sql azure server location

懵懂的女人 提交于 2019-12-05 16:09:33
问题 I would like to transfer my existing SQL Azure location to other one, but I think there is no functionality right now to do so on the management portal of Azure. I just googled it and found one link http://social.msdn.microsoft.com/Forums/en-US/ssdsgetstarted/thread/e6c961cc-5eea-4f07-82c9-a8805d367b05 that says I need to use the data sync option in Azure's portal but I don't have that feature enabled in my Azure portal. Also if I do use that option, is there any charge for it? Finally, are

Cannot get Linked Servers to work in Sql Azure

旧时模样 提交于 2019-12-05 13:24:53
问题 We are using a trial version of Azure. We are trying to perform cross server queries from our SQL 2012 in-house. We seem to have our local 2012 linked with Azure. When I go into Server Object -> Linked Servers in management studio, I see our Azure database. But if I try to open the catalog and tables, I get an error message saying Reference to database and/or server name in 'Perseus.sys.sp_tables_rowset2' is not supported in this version of SQL Server ** Perseus is the name of our catalog in

Azure website sometimes can't connect to SQL Azure database

∥☆過路亽.° 提交于 2019-12-05 11:23:26
I've been testing a website in Azure for about a month (Free trial), and now I've subscribed to pay-as-you-go. When I was on the free trial, I had absolutely no connectivity issues. Now I've deployed again to a fresh website created on the pay-as-you-go subscription with the same settings (scaling mode etc.) as the previous one. However, now when I navigate to my site, it sometimes fails to connect to my database: Server Error in '/' Application. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because

SQL Azure and READ_COMMITTED_SNAPSHOT

北慕城南 提交于 2019-12-05 10:58:27
I would like to set READ_COMMITTED_SNAPSHOT to ON on my SQL Azure database, but the following code, which works with other versions of SQL Server, is not supported in Azure: ALTER DATABASE [database_name] SET READ_COMMITTED_SNAPSHOT ON GO First question: Is it still a good idea to set READ_COMMITTED_SNAPSHOT to ON in SQL Azure (or whatever achieves the same result)? My intention is not to lock records when they are just being read, in order to improve performance. Second question: If it is a good idea, what's the Azure syntax for doing it? From what I can tell based on this MSDN article the

Sql Azure - separate servers?

做~自己de王妃 提交于 2019-12-05 10:46:12
问题 Let me preface this question by saying I'm neither a database nor Azure expert. It appears that MS charges by the size and number of Sql Azure dbases and not by the number of servers. Thus, cost-wise it seems feasible to put a single dbase on each server instance. My understanding is that sometimes it's more beneficial to put databases on separate, physical servers rather than on one machine in high use scenarios. Would/could the same be applied to Sql Azure virtual servers? Here's what I

Create SQL Server via Azure Resource Manager (ARM) template

会有一股神秘感。 提交于 2019-12-05 10:34:13
I am trying to create a new Azure instance of SQL Server in which I would like to then create a few new databases. I know from the Azure Portal that some sort of admin users could be: an SA user (I think this means "Server Admin" and it looks like some sort of old way of managing a SQL Server instance, but at the same time very "basic" and proved to work) an Active Directory user (not sure about Azure terminology here, but it looks like this could be some "broad user" for the whole Azure platform, like e.g. my own login user for the Azure Portal, this is not specific to databases world). I