Skip to main content
Filter by
Sorted by
Tagged with
5 votes
1 answer
124 views

I am working on a gaps & islands problem in MS SQL Server. I'm doing a daily challenge, and the table is a list of days I accomplished the task and the challenge day (calendar days since the first ...
Crystal Clayson's user avatar
3 votes
1 answer
146 views

In my Databricks cluster I'm trying to write a DataFrame to my table with the following code: df.write.jdbc(url=JDBCURL, table=table_name, mode="append") And this line fails with ...
Be Chiller Too's user avatar
Advice
2 votes
8 replies
118 views

I developed a simple Android app (A driver app for taxi booking). App sends its location (lat/lng) every 5 seconds to server using TCP/IP. and server stores the driver location in SQL SEVER database. ...
hamid's user avatar
  • 860
2 votes
2 answers
186 views

I need some help handling null columns in joins. I have three tables (below are just examples) Map, Employee and Region. Primary table is Map where I join Employee table on the MapID column to get ...
unicorn's user avatar
  • 590
2 votes
0 answers
135 views

TL;DR Is it possible to search for matches using two words in LIKE operator? Eg.: rsCustomers.Filter("Name LIKE '%John%Doe%'"). I have this ADODB.Recordset called rsCustomers that persists ...
Diogo's user avatar
  • 31
Best practices
1 vote
1 replies
101 views

Our team manages a SQL Server 2019 data warehouse that’s grown to over 10 TB. It currently uses a single database with multiple schemas (clinical, financial, hr, operations, staging, etc.). Our DBA is ...
Raja's user avatar
  • 68
1 vote
2 answers
109 views

Recent versions of Microsoft SQL Server allow creating a clustered columnstore index on a table that has computed columns, as long as they are not persisted computed columns. [1] I would like to get ...
Ed Avis's user avatar
  • 1,622
0 votes
1 answer
74 views

I have a table valued function called "elara_customer_byname". When I execute SELECT * FROM elara_customer_byname('%Kar%') I get 2 rows, which is incorrect. If I copy the SQL from the ...
Karlton Kemerait's user avatar
0 votes
1 answer
126 views

Is there any way to compare the results of Boolean expressions as in the following query? This expression gives the error Incorrect syntax near '='. at the first '='. select * from Transfers where (...
Jonathan Wood's user avatar
0 votes
1 answer
135 views

I have a generic ASP.NET Core Web API that uses EF Core to connect to a SQL Server instance that uses Microsoft Entra MFA account. The connectivity prompt for the SQL Server looks like this: I have ...
James's user avatar
  • 1,345
0 votes
0 answers
47 views

We are currently backing up all of our databases to a series S3-Compatibable storageGRID buckets hosted by our data center provider. Some of our larger databases backups run quite long (upwards of 8 ...
Ben Adams's user avatar
0 votes
0 answers
67 views

We have an End-to-End process which loads data into a Landing database. It used to run individual repopulate scripts for each data source in sequence, but that was taking more and more time to the ...
John Hunter's user avatar
Advice
0 votes
2 replies
83 views

Goal The company wants to grow and take advantage of the AI revolution. But there is no roadmap and the current process limits their growth capability. The current process is about 20% automation and ...
Draco's user avatar
  • 67
0 votes
0 answers
58 views

I need to get a row number to change each time a StatusID changes. When I use the query attached I get the RowID, but I would like to get the column RequiredRowID. select SequenceNo, ...
Derek Jee's user avatar
  • 155
0 votes
0 answers
135 views

I'm trying to connect to an on-premises SQL Server instance using the SQL Server connector in Power Automate within a Power Platform environment linked to an Azure Virtual Network (VNET). Microsoft ...
Kannan Karmegam's user avatar
-1 votes
0 answers
22 views

I'm helping out someone where it looks like their previous developer stored some data tables in the Master database in SQL Server Express 2014. I don't know if it was to see if one could get around ...
ulysses1904's user avatar
-1 votes
0 answers
52 views

I have an Azure Managed SQL Instance with SQL Server 2022, I'm trying to add column-level encryption to source control (Azure DevOps pipeline/Git) where it's already configured/deployed on the target ...
Greg's user avatar
  • 4,113
-1 votes
0 answers
101 views

How to enable full-text search feature in SQL Server for .NET Aspire? var sqlServer = builder.AddSqlServer("sqlServer", builder.AddParameter("password123!!!", true)) .WithLifetime(...
Joseph Wambura's user avatar
-2 votes
0 answers
43 views

I'm having intermittent connectivity problems when trying to connect to an azure based SQL database when using SSMS. I've done the following troubleshooting: The exact same version of SSMS has been ...
hozer95's user avatar
  • 81
-3 votes
1 answer
52 views

I am trying to connect the DB for testing web elements that have dependencies on data, and in general to add some reliable BE testing. Currently I have cypress.config.js: // cypress.config.js const { ...
Rimon Sade's user avatar
-3 votes
0 answers
58 views

I have a stored procedure and know its input parameters. How can I extract this data from this stored procedure in PHP? I have a query that allows me to display this data in the MSSQL database itself. ...
Мария Багманова's user avatar
-5 votes
1 answer
129 views

I've got a query which I will simplify it to be: SELECT * FROM BLAH WHERE PPO_DISC_ID NOT IN ('009-003') AND PPO_DISC_ID NOT LIKE '20%' AND MyNum = '30788' My problem arises when PPO_DISC_ID is ...
Johnny Bones's user avatar
  • 8,492