azure-sql-database

Using SQL Dependency with Azure

柔情痞子 提交于 2019-12-24 00:14:54
问题 In my Local DB Sql Dependency works fine, but when i migrate to an Azure Database is not work. I check if service broker is enabled, and it is activated. This is the error: Statement 'RECEIVE MSG' is not supported in this version of SQL Server This is my code: public class Program { static void Main(string[] args) { SqlClientPermission permission = new SqlClientPermission(System.Security.Permissions.PermissionState.Unrestricted); if (SolicitarNotifications()) { string con = "Server=tcp:xxxxx

Avoid storing connection string in session for different sql schema

回眸只為那壹抹淺笑 提交于 2019-12-23 20:29:13
问题 I am planning to have a multi tenant application in Azure where data isolation is achieved via schema separation. I am planning to use subdomain to identify the tenant. Idea is to get the tenant name from the sub-domain, get the user-id and password from the login page and validate the uid, pwd & tenant id for the authentication. If authenticated, all the calls to SPROCS from the application needs to be directed to the schema (same name as the tenant). However, i dont want to store tenant

What is the CA certificate path for a SQL Azure database?

落花浮王杯 提交于 2019-12-23 17:55:45
问题 I have a .NET web application which connects to a database hosted in the cloud on Microsoft's SQL Azure platform. Now I'd like to use Domo, a third-party cloud-based business intelligence service, to do some reporting on the data in the Azure database. The Domo consultant has told me that he needs a CA certificate path for the database server (in addition to other standard connection info) in order to connect to it. He has suggested that I need to get a cert and apply it to the database

How can Azure notify me when my primary database becomes unavailable?

…衆ロ難τιáo~ 提交于 2019-12-23 15:58:57
问题 I have setup Active Geo-Replication for my primary Sql Azure database. How can I be notified that my primary database is unavailable due to datacenter issues so I can begin our application failover procedure? Also, how does Traffic Manager notify failover events? 回答1: With most large scale outages your application connectivity will be impacted so presumably it will surface as an application alert of some sort. So your real question is what else do you need to check to make sure this is a real

How do SQL Azure and Azure Table Storage compare? [closed]

帅比萌擦擦* 提交于 2019-12-23 11:46:41
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Currently I have a prototype that runs in IIS on my local machine and uses SQL Server Express 2005 for storing data in three SQL

Azure SqlException: Database on server is not currently available

前提是你 提交于 2019-12-23 10:47:13
问题 Our site has been running for a few weeks in Azure without getting this error: SqlException: Database 'database' on server 'server' is not currently available. Please retry the connection later. If the problem persists, contact customer support, and provide them the session tracing ID of 'guid'. It finally got that one day when there were a little over 2K of active (concurrent) users. This is the closest question that I can find in SO. We are not using EF though but rather we're using Dapper.

How to get Symfony2 connected with SQL Azure?

て烟熏妆下的殇ゞ 提交于 2019-12-23 10:23:06
问题 Is there somebody who was already successful with this topic? I already tried to write a custom Doctrine platform, but it isn't as easy as I thought. By the way this is the first question tagged with [sql-azure] [symfony-2.0] :/ 回答1: check https://github.com/beberlei/AzureDistributionBundle this should already work, at least for simple symfony2 applications. 来源: https://stackoverflow.com/questions/10140912/how-to-get-symfony2-connected-with-sql-azure

Azure Sql request limit reached although the number of connections is well below the resource limit

可紊 提交于 2019-12-23 09:30:02
问题 We have a few Java applications that use a common Azure Sql database through JDBC. Each application has a pool of connections to that database. The number of connections in the pool is limited, so the total number of connections from all applications is well below the database's resource limits. Lately we've been getting these types of exceptions quite frequently: com.microsoft.sqlserver.jdbc.SQLServerException: Resource ID : 1. The request limit for the database is 200 and has been reached.

Can SonarQube connect Azure SQL Database?

自作多情 提交于 2019-12-23 05:44:40
问题 My SonarQube is running on VM instance of Microsoft Azure. Now the SonarQube's database is MySQL, and I'm trying to change MySQL to Azure SQL Database, but SonarQube couldn't connect Azure SQL Database by some erroes which occured at ActiveRecord component. I know SonarQube doesn't support Azure SQL Database officially and support SQL Server below, nevertheless Azure SQL Database is compatible with SQL Server, so It's may possible to connect Azure SQL Database. Please tell me how to connect

Azure Mobile App using existing database

早过忘川 提交于 2019-12-23 04:57:12
问题 I'm at my first attempt in using Azure Mobile App, and I should connect it to an existing and already populated SQL Azure DB. As far as I understand, one must add to the tables the Version , CreatedAt , UpdatedAt , and Deleted columns, and most important there must be and id column set as identity. The problem is that on some tables I already have an identity column (eg. ItemID ), wich I cannot rename without breaking existing third party applications that connects to the data. The question