Skip to main content

All Questions

Filter by
Sorted by
Tagged with
Advice
0 votes
4 replies
77 views

I’m attempting high-volume bulk inserts into Azure SQL, but the performance is lower than expected. One known factor is the Max Log Rate (MiB/s) limit, which depends on the service tier (see Microsoft’...
Bill's user avatar
  • 590
0 votes
1 answer
100 views

I have a web app using code-first EF Core. One of the controllers needs to run what should be a simple query (basically SELECT TOP 1 * FROM companies WHERE id = @id; in EF terms, var data = await ...
minnmass's user avatar
  • 261
0 votes
1 answer
89 views

I'm looking at the Networking settings for one or our Azure SQL servers, and I see some of them are greyed out. Azure Portal shows a message "You can use TSQL to remove or modify greyed out rules....
DinahMoeHumm's user avatar
0 votes
0 answers
73 views

When using the sp_execute_remote to call the remote SQL command, the call adds the column $ShardName to the result data set. Is there any way to suppress returning that extra column? Two reasons... ...
pepr's user avatar
  • 21.1k
0 votes
0 answers
57 views

We have a SQL Server Data Tools (SSDT) Visual Studio database project, and we deploy the DACPAC output using DacFx + PowerShell scripts. In this project, we enable: Database-level change tracking via ...
Indi's user avatar
  • 33.9k
-1 votes
2 answers
237 views

I'm using Azure SQL (Standard S0: 10 DTUs) to store data from various IoT devices. Each IoT device sends messages to my Azure IoT Hub, which then triggers an Azure Function App. The Function App ...
DJDJ's user avatar
  • 763
0 votes
0 answers
48 views

Having the SQL stored procedure remote_usp_test in the remote database, I can successfully call it using the sp_execute_remote from the local database like this: EXEC sp_execute_remote N'xxxDataSrc', ...
pepr's user avatar
  • 21.1k
0 votes
1 answer
64 views

I am trying to set diagnosticSettings to an array of databases in bicep using for (db, i) in dataBaseArray. At first I create the databases: @batchSize(1) resource sqlDatabases 'Microsoft.Sql/servers/...
ABF's user avatar
  • 119
0 votes
0 answers
27 views

I’m trying to insert rows into Azure SQL Database using Azure Functions SQL Output Binding (Node.js). const { app, output } = require('@azure/functions'); const { z } = require('zod'); // SQL Output ...
mehran Bn's user avatar
0 votes
0 answers
64 views

In my resource group I am trying to turn on auto-tuning via our ARM Template using this bit of JSON. What we'd like to know is, is if that restriction on PUT is from Org Policy and not just the fact ...
Shiba Prasad Sahoo's user avatar
0 votes
0 answers
32 views

I configured a failover group with a SQL MI in West US and another SQL MI in West US 3. Each have their own VNET, subnets and NSG configured. The first SQL MI existed prior to creating the failover ...
dlvx's user avatar
  • 691
0 votes
0 answers
141 views

Alright so I was going to test my pipeline/data flow where I'm querying a cosmos DB and putting some of that data into an Azure SQL DB table. When trying to do so, I came across this validation error ...
BlakeB9's user avatar
  • 687
0 votes
0 answers
104 views

I'm receiving this error when trying to test my data flow/pipeline I've got a data flow where I'm querying a Cosmos DB and inserting some of that info into an Azure SQL DB table. I have auto mapping ...
BlakeB9's user avatar
  • 687
0 votes
0 answers
93 views

Body: I have an Azure Data Factory (ADF) pipeline running on a Self-Hosted Integration Runtime (SHIR). In my SQL table, I have a column JsonData that stores large JSON objects (each 15–20 MB). I need ...
bubu's user avatar
  • 85
1 vote
0 answers
112 views

I have a python based Docker container to be run on Azure Kubernetes and need to connect to an Azure SQL database. I previously used the adal package for Python, but due to security reasons, we want ...
Christian Beckers's user avatar
0 votes
1 answer
107 views

My IT department is getting an e-mail "Azure SQL Database 2014-04-01 APIs will be retired on 31 October 2025". I use bicep and have never used any API's that are that old, they're all ...
Lee Richardson's user avatar
0 votes
1 answer
109 views

Its a sort of CDC ( Change Data Capture ) scenario in which I am trying to compare new data (in tblNewData) with old data (in tblOldData), and logging the changes into a log table (tblExpectedDataLog) ...
Aza's user avatar
  • 27
0 votes
1 answer
66 views

One of our clients has a Azure SQL database running on a P1 Premium Pricing Tier. I created a Memory Optimized table in this database, e.g. CREATE TABLE [dbo].[Foo] ([id] INT ...
DinahMoeHumm's user avatar
0 votes
1 answer
758 views

I'm trying to connect from a Fabric notebook using PySpark to a Fabric SQL Database via JDBC. I have the connection code skeleton but I'm unsure where to find the correct JDBC hostname and database ...
muskagap88's user avatar
0 votes
0 answers
48 views

I'm trying to connect to my Azure SQL database via Android Studio, but keep getting an AssertionError while running the app. I'm using mssql-jdbc-12.10.1.jre11 Server.java public static void ...
Lollipop Swamp's user avatar
0 votes
0 answers
115 views

I am using Liquibase 4.32 for Azure SQL database deployment. I want to use user-assigned managed identities for deployment rather than specifying the username and password. For that, I followed this ...
Bhavesh Jadav's user avatar
1 vote
1 answer
131 views

I have code that removes the records in the table variable @small_tab from another table variable @large_tab: DELETE t1 FROM @large_tab AS t1 JOIN @small_tab AS t2 ON t1.[DBR Addition Cust Disc Group] ...
pepr's user avatar
  • 21.1k
0 votes
1 answer
578 views

In our Azure Pipeline we add members to roles of a SQL Server database: ALTER ROLE [db_datareader] ADD MEMBER [$(user)] ALTER ROLE [db_datawriter] ADD MEMBER [$(user)] This has worked years without ...
Silvan's user avatar
  • 381
0 votes
2 answers
128 views

We have a query that creates a temporary table to store IDs for deletion and then deletes the corresponding records from a table in an Azure SQL database using transactions. The database is part of an ...
AlokBhatt's user avatar
  • 517
0 votes
1 answer
137 views

I have azure web app having system managed identity turned on. I am trying to add this app(using identity) to the Azure SQL Server CREATE USER [appname] FROM EXTERNAL PROVIDER; This works fine but ...
S.D's user avatar
  • 1
0 votes
1 answer
200 views

I am using Microsoft SQL Azure (RTM) - 12.0.2000.8, where I configured the secure enclave with VBS where I am using keyvalut for creating column master key. All the operators are working fine except ...
Ashish Singhal's user avatar
0 votes
1 answer
54 views

I'm baffled. I'm trying to connect to an Azure SQL database (managed, not a VM) from an Azure VM running Ubuntu. I'm using python FreeTDS ODBC with a connection string that looks like: Driver=...
Brian Arsuaga's user avatar
-4 votes
2 answers
108 views

Having large table T of dates, integers between 0 and 2, and isin strings like date V1 V2 V3 V4 isin 2015-01-01 0 1 0 2 a 2015-01-02 0 1 2 1 b 2015-01-05 1 2 0 1 c 2015-02-01 0 0 0 0 c 2015-02-02 1 2 ...
user30718721's user avatar
0 votes
1 answer
142 views

TLDR: running SQLPACKAGE /action:Scripts against my DACPAC results in users/logins created, but the create script runs a "CREATE USER FOR LOGIN X; REVOKE CONNECT TO X". I need it to not run ...
mbourgon's user avatar
  • 1,368
0 votes
1 answer
158 views

I'm encountering an issue when executing transactions on system-versioned tables (SQL Azure) in my ASPNET Core + Entity Framework app. In my database, there are two system-versioned tables: dbo....
ilMattion's user avatar
  • 2,019
0 votes
2 answers
276 views

The Azure SQL database is designed to auto-pause when a) it hasn't been active for a period of time, b) when it reaches the limit of a resource. For the first, you just attempt to connect again and it ...
BWhite's user avatar
  • 883
1 vote
2 answers
298 views

I've been working on a solution in Azure SQL using the native JSON data type for the last month. Everything has been going well, but I've just run one of the functions that has been working ...
Tom Hodson's user avatar
0 votes
1 answer
94 views

I'm using a PowerShell script to create a copy of an Azure SQL Database (Database1) using the New-AzSqlDatabaseCopy command. However, the runbook times out during execution. I'd like to know: Does the ...
M.Tharun Kumar's user avatar
0 votes
2 answers
184 views

I am using the .NET 8 Blazor web app template. I have been programming locally for a while with no issues. I recently tried to deploy my web app to azure, however I keep running into an error ...
Braden Kayne's user avatar
0 votes
1 answer
110 views

I'm trying to deploy my ASP.NET Web API to Azure. Long story short - it works on local machine - Azure SQL, but not on the cloud app (HTTP ERROR 500) using the same AZURE_SQL_CONNECTIONSTRING. Is ...
Timotius Giovandi's user avatar
0 votes
1 answer
134 views

I have copied our database to another Azure SQL database, see the screenshot. However, when I access the database, I'm unable to view the tables. I can only view system tables. Can someone let me know ...
Patterson's user avatar
  • 3,011
-1 votes
3 answers
217 views

We have a daily ETL process where we write Parquet data (~15GB) stored in Azure Data Lake Storage (ADLS) into a table in Azure SQL Database. The target table is truncated and reloaded each day. ...
Harish J's user avatar
  • 166
0 votes
0 answers
117 views

I am experiencing an odd problem that I cannot find any solution for the last week. Wednesday 16/4 ~17.00 suddenly my APIs deployed in an Azure Function app have become much slower. The architecture ...
Fallen Greg's user avatar
0 votes
1 answer
76 views

enter image description here During the POC, while I am trying to connect my source, source connection is established successfully, but I don't get any databases populated in the source. I want to ...
Amit Singh's user avatar
-1 votes
2 answers
245 views

I'm migrating my application's data layer to using user-assigned managed identities to connect to SQL Server and other Azure services. While generally the migration went well, I get an error You do ...
Alex Avrutin's user avatar
  • 1,397
0 votes
1 answer
277 views

I have a problem to log in to Azure SQL with Service Principal using Powershell. My Service Principal is an Admin on this Azure SQL. Service Principal has Directory.Read.All Graph api permission and ...
michasaucer's user avatar
  • 5,435
0 votes
2 answers
232 views

Is it possible to apply the free offer via Terraform? So far I can only apply it when I manually create the database and click on the "Apply offer" button. I would expect that this is ...
Norbi's user avatar
  • 9
-1 votes
1 answer
114 views

I haven't found a single tutorial that shows how to connect Glue to a SQL Server or Azure DB instance, so that's why I'm here. I'm having issues connecting AWS Glue to a SQL Server instance in a ...
fdkgfosfskjdlsjdlkfsf's user avatar
0 votes
1 answer
45 views

We have an Azure SQL database that numerous people need to have access to. I would like an alert any time someone makes a change to a stored procedure or view.
user3538228's user avatar
0 votes
1 answer
213 views

I'm trying to connect to our Azure SQL DB from Databricks configured with JDBC as follows: DBUser = 'test2' DBPword = 'xxxxxx' DBServer = 'hst37dg5zxxxxxxy-exnwgcizvwnurfcoqllpyaj3q4' DBDatabase = '...
Patterson's user avatar
  • 3,011
0 votes
1 answer
347 views

Azure SQL Server provides a set of Server Roles (https://learn.microsoft.com/en-us/azure/azure-sql/database/security-server-roles?view=azuresql#fixed-server-level-roles) I want to assign a Azure Entra ...
Mike's user avatar
  • 2,605
0 votes
1 answer
205 views

We have a Azure environment and a SQL MI instance (with SSMS) and a Azure AD (EntraID) that is handled by the security team at our company. Today we are reading Active Directory data via SQL Server ...
Nils's user avatar
  • 514
0 votes
2 answers
108 views

I need 1 record per Id and to achieve it I tried with self join, case statement as well tried using COALESCE function but I am still getting multiple records for same client. Below approach is mostly ...
Abhi's user avatar
  • 13
0 votes
1 answer
165 views

I have a web application in .NET 8 hosted in an Azure web app. I have added a connection string in environment variables and want to access it in the program.cs file when we normally pass the ...
raw_hitt's user avatar
  • 1,093
0 votes
1 answer
90 views

I have setup my system managed identity and my Web API as well as my Azure SQL Server and I figured I would give Entity Framework Core with a code-first approach a try but I am not able to get past ...
Qiuzman's user avatar
  • 1,843

1
2 3 4 5
215