azure-sql-database

Azure Online SQL Database Management is Unavailable

青春壹個敷衍的年華 提交于 2019-12-07 03:55:56
问题 I am trying to host a sql server on azure to communicate with a node app. I have gone through the process of creating the database server and the database itself successfully. Now, I would like to edit my database structure. From what I have found online, there should be a way to access the database through the management portal with Azure. Every tutorial and other piece of advice I have found (including the MSDN page linked), has instructed me to find the online db management software by

Is it possible to use Entity Framework with Windows Azure development storage service?

拟墨画扇 提交于 2019-12-07 03:32:19
问题 EDIT: Is it possible to use Entity Framework with Windows Azure development storage service? and how? Thanks. 回答1: No, it wouldn't be possible or practical. Azure Storage (different from SQL Azure) doesn't support joining and may not respond well to ad-hoc queries. But you don't need it. Azure storage already supports LINQ and object mapping. 回答2: Craig's answer is right for Windows Azure storage. For SQL Azure, there's no such thing as development storage, but you can use EF against SQL

Azure SQL Data Warehouse DWU vs Azure SQL DTU

你。 提交于 2019-12-07 03:18:22
问题 I am considering migration from Azure SQL to Azure SQL Data Warehouse. It seems to offer some of the features that we need, however price is a concern for starting small. 100 DWU Data Warehouse is priced considerably higher ($521/month) than a seemingly comparable 100 DTU Azure SQL S2 tier ($150/month). To make sure I am comparing apples to apples, can someone shed some light on how DWU compare to DTU (assuming basic configuration with a single database)? Edit: to everyone who is inclined to

EF6 Connection String in Azure

馋奶兔 提交于 2019-12-07 01:30:38
问题 We have a website and a sql server on Azure. We have included the Entity Framework connection string in the Azure Portal but we get the following error: The connection string 'MyEntities' in the application's configuration file does not contain the required providerName attribute." Looking at the connection string it clearly has the provider: metadata=res:// /MyEntities.csdl|res:// /MyEntities.ssdl|res://*/MyEntities.msl;provider=System.Data.SqlClient;provider connection string="data source

SSAS Tabular on Azure?

浪尽此生 提交于 2019-12-07 01:07:26
问题 I'm attempting to deploy an ssas tabular model (I don't know what I'm doing ) I have made multidimensional on SQL Server 2008 R2 with VS2013. I wanted to try Tabular in conjunction with power BI. So I set up a SQL Azure DB, I have Azure SQL database and Visual Studio 2013 Pro I can get the connection to the Azure DB in VS2013 and write T-SQL against it but when I try and create a tabular model and select the Azure database as the SQL Server workspace it fails to make a connection. Is it

SQL Azure Reset autoincrement

人盡茶涼 提交于 2019-12-07 00:18:05
问题 I found a lot of topics telling to use : DBCC CHECKIDENT ('table', RESEED, 0) But this is not supported by Azure SQL. Does somebody have any idea on how to do it easily ? Thanks a lot ! 回答1: DBCC CHECKIDENT is not supported for now in SQL Azure as you commented. Check this MSDN forum post, there are some solutions proposals, maybe one of them can help you out. 回答2: You don't have too many options... the only one I can think of is to drop and recreate your table. 来源: https://stackoverflow.com

Azure SQL Database connection exception (System.Data.SqlClient.SqlException is thrown )

狂风中的少年 提交于 2019-12-06 19:49:39
I'm working on an ASP.NET MVC project and I started from scratch. I just want to use the SQL database hosted on Azure in my project. System.Data.SqlClient.SqlException (0x80131904): Login failed for user 'myname'. This session has been assigned a tracing ID of '00dbcf81-35eb-4d92-b022-da1bca001e5f'. Provide this tracing ID to customer support when you need assistance. What I did: I set up the web.config connection string using the one Azure Management Portal provided. I copied and pasted directly. I set up the firewall on my computer - both outbound and inbound with port 1433 allowed In azure

Is it possible to use cross database queries in both Azure and SQL?

非 Y 不嫁゛ 提交于 2019-12-06 16:46:33
问题 I am working on a project designed to run on azure platform using Azure database and Locally using local sql server. We have stored procedure that contain cross database calls. However It doesn't works on Azure server.I need cross database queries that capable of working in both azure and local sql server. We an use Elastic Query which allows us to query across Azure SQL Databases https://azure.microsoft.com/en-us/documentation/articles/sql-database-elastic-query-overview/ We can setup

Azure function to connect to both blob and sql storage

点点圈 提交于 2019-12-06 16:39:58
I have what I thought would be a perfect introduction test case for Azure functions. We have a SQL store in Azure (SQL database). Using C#, VS 2017, updated Azure workflow items. We also have a Blob storage. Each night I need a process to go to the SQL database, collect a group of records based on a criteria and then process them generating a file that will be stored in the blob storage. I cannot seem to get over the hump of getting either of these tasks done. All of the tutorials seem to be of the most basic type. I have a function created in VS 2017, but first step is just to connect to the

Changing the default database for a SQL Azure login

余生长醉 提交于 2019-12-06 16:32:43
问题 I would like to change the default database for a login to support software that can access SQL Azure but does not allow easy alteration of a connection string. It appears that SQL Azure defaults to the master database. I've already considered: Stored procedures. I can't find a stored procedure that does this ( sp_defaultdb is not implemented in SQL Azure as far as I can tell) Alter Login. ALTER LOGIN does not permit the DEFAULT_DATABASE option. SSMS. SSMS doesn't seem to allow much user