SQL Stored Procedure BULK INSERT wont execute when called from Kubernetes Cluster
Hi There, I have a Python Program that calls a Stored Procedure on a SQL Managed Instance in Azure. This stored procedure, deletes data from a staging table and carries out a BULK INSERT of Data from CSV files that are stored in a Storage Account…
Correct SQL query to not repit articles
Hello, good afternoon, I have the following query in SQL and it is returning duplicate items. I managed to decipher that the items that are duplicated in the "On Orders" column in one row appear with one quantity and in the next row (Same item,…
CURSOR for column in WHERE that gives dynamic columns in SELECT
Hello, I need help to make my query more simple Depends how many rows for column Code (now I have 53 rows) then it will be 53 sub selects and 53 more columns. How to make it simple to add variable in select and in sub select instead of writing 53 times…
How to get the non null row before the row with null value
Hi I want to see the non null row before the row with NULL value in the result set. I have data in below in format I want to see ID 2 row in the result set like below Help with this would be appreciated.
Runing SSAS Tabular Processing Script (TMSL) from SSAS Database Engine
Hello Experts, In continuation of my previous question https://learn.microsoft.com/en-us/answers/questions/2076521/processing-monthly-partition-from-sql-job-using-st?source=docs We have SSAS Tabular model database and SSAS Database engine. When trying to…
How to get a date of day in current week
Hi, I have table that stores configurations like In my sql code, I need to take currentDateTime and get current week date for Execution Day which is Wednesday. So, for this week, it will be 10-02-2024. Get following week wednesday date. Here it…
better query for select results based on date.
What is the best way to write this code to get the date results? I have the time throughout the day in the datetime field. SELECT * FROM Reconciliation.Documents D Inner Join Reconciliation.DocumentsTransaction T ON D.DocumentPKey = T.DocumentPKey WHERE…
Like to review records incorrectly entered in the database
We have a database where we enter a record with a number with an alphanumeric suffix. But the software entered it incorrectly due to an algorithm issue which we are trying to fix now but past transactions need to be fixed in the database. If I know the…
date function in Sql
I have a timestamp where I want to query only based on the date and exclude time.
Way to optimize query where no union needed
I had to use union on two very similar queries where one is just a copy of the other but the having clause is equal with an additional condition in the where clause. Is there a way to clean up the code? DECLARE @PO_DATE_FROM date = '2024-09-08',…
Queries in the same window for multiple databases, servers, and tables
I was wondering in SSMS in the query window could I write multiple queries that use different servers, databases, and tables? A compounded question and answer I am expecting for this.
SET FMTONLY ON/OFF is deprecated according to the docs and should be replaced by sp_describe_first_result_set. But sp_describe_first_result_set returns 'incorrect syntax' message on correct queries. How to correctly migrate?
Using this simple table structure: CREATE TABLE Persoon_ ( ID INT, Adres NVARCHAR(50) ) CREATE TABLE Factuur_ ( ID INT, Debiteur INT, Persoon INT, Bedrijf INT, Derde INT ) CREATE TABLE Bedrijf_ ( ID INT, FactuurAdres NVARCHAR(50), …
Purpose of Schema
What is the purpose of schema? I am a BA like to be more technically knowledgeable.
How to write/read comma-separated data from an SQL table and load them into a datagridview column?
I want to write comma-separated string values entered in a text box to an SQL table and later fetch them from the table and load them into a data grid view column.
Icons in SQL management studio
Like to know what the icons mean SQL management studio. Some are the basics like for the database and some are bit more unique.
How to extract all email addresses from column XML data - 2008 R2 compatibility mode
Re: How to extract all names from column XML data - 2008 R2 compatibility mode - out of my control There is a column that contains names that are formatted like this - <item xsi:type="bus:custName">willow</item> There can be names.…
An error in the editor for Ignore Nulls
Hi All, I have a query that retrieve the previous row info for the specific column. The attached image query can be successfully executed. However there is a syntax error line on the editor. The execution engine of the database understand and processes…
Join to return default job information if step information is not present
I have a job 1111 with three steps : 11111, 11112, 11113. Steps 11111 and 11112 have a specific delivery method. Step 11113 does not have a specific delivery method so it will use the job default delivery. I have tried to code it my self but the code is…
Database Mail Stopping
Currently having issues on two separate SQL 2022 servers with Database Mail. The service won't auto start up as it should do - I can manually start it and it seems to run for just less than an hour or so and then shuts down and won't restart itself…
Query to return all users permissions on SQL Server
Hi everyone, Please how can I use TSQL to get the list of all users detailed permissions and privileges on each database. I want the query to return critieria like: Username Database name Login Type (SQL, Windows user or group, etc) Permission Type…