Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
0 answers
42 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
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
-3 votes
1 answer
51 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
0 votes
0 answers
68 views

I'm using EF Core 9 and I'm trying to run a migration against a copy of our production database. On our local development databases everything works, but on the production copy the migration fails ...
heaxyh's user avatar
  • 633
0 votes
1 answer
127 views

In our system we are hashing passwords with the following method. public static string HashPassword(string password, byte[] salt) { if (salt == null) { throw new ArgumentNullException($...
Cerkvenic's user avatar
  • 377
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
-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
43 views

We were using SQL Server 2016 with SimbaODBCDriverforGoogleBigQuery connector and that was working as expected but when we migrated the SQL Server & OS to 2022, the ...
Sethu Neeli's user avatar
-1 votes
0 answers
49 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
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
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
Advice
1 vote
12 replies
154 views

We have some tables in an on-premises SQL Server database that we archive data every day. Currently, we have a schedule task that runs a C# program, that write old data into a .CSV file. Each batch ...
SyndRain's user avatar
  • 3,907
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
1 answer
86 views

We're using fulltext indexes in current builds of SQL Server and/or Azure SQL - compatibility levels well over SQL Server 2016 or higher, preferably SQL Server 2022 on Azure. While the searching in a ...
DinahMoeHumm's user avatar
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
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
2 answers
153 views

I have this data: Client_Id VisitDate Mins period_Id program_Id 1 2025-01-01 3 600 T 1 2025-01-02 0 600 T 1 2025-01-03 45 600 T 2 2025-01-01 0 600 T 2 2025-01-02 0 600 T 2 2025-01-03 15 600 T 3 2025-...
Kofisam's user avatar
3 votes
3 answers
118 views

How do you delete rows in tables using Entity Framework (Core), when you have two tables that are referencing each other in both directions? Consider there classes: public class ImageSeries { int ...
haagel's user avatar
  • 2,758
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
0 votes
0 answers
24 views

On Windows Server 2016 and with SQL Server 2019 (v15.0), the tempdb file size is huge at about 80GB and it is divided into many files such as: tempdb.mdf, tempdb_mssql_2.ndf tempdb_mssql_3.ndf ... ...
Orgil's user avatar
  • 317
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
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