azure-sql-database

Azure REST API information

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-25 00:12:44
问题 We are developing an Azure SQL Database with an associated REST API. The API is implemented with an Azure App Service using .NET Core. I would like to get a log or output in some form of every call into the API for some time period, including the following items for each call: entire URL and parameters response time I would think this information is available somewhere. I have read and watched a considerable volume of tutorial material about Azure and App Insights without finding it, as well

Do Azure Elastic Database Pools allow Cross Database transactions?

本秂侑毒 提交于 2019-12-24 19:14:36
问题 We have Stage database, which contains stored procedures, and transfers data into an OLTP Database. Do Elastic SQL Databases reside on same server, and give ability to conduct cross-db stored procedure transactions? Would Elastic databasepool allow this? https://docs.microsoft.com/en-us/azure/sql-database/sql-database-elastic-pool 回答1: You can achieve elastic transactions spanning across databases using .NET client applications. This is currently under preview. Elastic transactions at server

What is the best approach to call web service from azure sql?

和自甴很熟 提交于 2019-12-24 18:19:22
问题 What is the best approach to call web service from azure sql(from stored procedure)? I understand that azure sql doesn't support CLR assemblies(SQLCLR). 回答1: No, you cannot access external resources (network, file system, registry, etc) from Azure SQL Database. Neither SQLCLR nor OLE Automation stored procedures (i.e. sp_OA* ) are available on that platform. Even during the year-and-a-half that Azure SQL Database supported SQLCLR (late 2014 through mid-April 2016), it was SAFE Assemblies only

Call stored procedure from Elastic Database in Azure

眉间皱痕 提交于 2019-12-24 16:26:02
问题 Here is the scenario: Elastic Database A connected to database B Database B contains stored procedure that returns result set needed in database A As far as I can tell the title can't be done. Only tables or views seem to work from my testing. So the next though was to yield the stored procedure as a view in database B then call the view from DB A. But views cant call stored procedures, even tried looking into table valued functions between the view and the stored procedure, but that's not

Can we use HDInsight Service for ATS?

喜欢而已 提交于 2019-12-24 16:25:32
问题 We have a logging system called as Xtrace. We use this system to dump logs, exceptions, traces etc. in SQL Azure database. Ops team then uses this data for debugging, SCOM purpose. Considering the 150 GB limitation that SQL Azure has we are thinking of using HDInsight (Big Data) Service. If we dump the data in Azure Table Storage, will HDInsight Service work against ATS? Or it will work only against the blob storage, which means the log records need to be created as files on blob storage?

Azure Websites to use a VM running SQL Server?

只谈情不闲聊 提交于 2019-12-24 14:34:21
问题 I want to add some of my websites to Azure, however they rely upon SQL Server's full text search which currently isn't supported in SQL Azure. Is there any way to create a VM in Azure, install SQL Server and then change the website connection string to use that SQL Server instance? I would obviously want to do this securely, and with the least possible network latency. I want to use the Azure websites functionality and have those websites access a SQL Server instance running inside an Azure

Azure web app slow server response time

瘦欲@ 提交于 2019-12-24 13:26:00
问题 I have Basic (Small) tier Azure Web App hosted in West Europe with a Basic SQL Database in the same region. Always On is turned on. Note that my website's target audience is in Europe. Note that the website is CodeIgniter based and runs on php 5.6 . The page loads really slowly, even though on local environment everything is fast. After running PageSpeed Insights on my site I get the following assessment: Reduce server response time In our test, your server responded in 1.7 seconds. There are

converting a blob (.bacpac) to .bacpac file to import database to SQL Server Azure?

夙愿已清 提交于 2019-12-24 12:05:08
问题 While working in MVC/ C# with Azure I need to restore database from a .bacpac file which is stored in blob storage. I m using DAC Framework API to access .bacpac from Blob storage. Issue: DacServices.ImportBacpac requires .bacpac file, I am able to refer blob file (which is a .bacpac) but it comes as a blob and not as a .bacpac file. I m not sure how to convert a blob to a .bacpac. Can you please guide me some way or API to do that conversion ? Later I will use this file to import backpac to

value based on sequence for each detail

心已入冬 提交于 2019-12-24 10:57:51
问题 I am using SQL Datawarehouse for my database Find the V,T,C in sequence for a given detail group by Shipment_id order by TASK_SEQUENCE_NUMBER where the order of TASK_TYPE is V then T then C. This value can be 0 if there is no values for V,T,C in sequence In case of V,T,C is more than once, we can sum the values and display below is the table schema and data with the result expected which has to be incorporated in a stored procedure with more columns in the Task_Main Table. CREATE TABLE [dbo].

SQL Azure rest api BeginExport… how to check if export completed

自闭症网瘾萝莉.ら 提交于 2019-12-24 09:55:26
问题 I need to programmatically export an SQL Azure database to a BACPAC file and once the export has completed I need to delete the database. The SQL Azure REST API allows me to submit an export request which will run and export the database to a blob storage container. But... I can't see how to check on the status of the export request. Here's the export api description: https://docs.microsoft.com/en-us/rest/api/sql/Databases%20-%20Import%20Export/Export And the overall SQL api description: