Viewing 15 posts - 1 through 15 (of 22 total)
I'm sorry. The first post gave an error and I thought it had not been uploaded
April 19, 2023 at 8:10 am
This was removed by the editor as SPAM
April 19, 2023 at 8:07 am
This was removed by the editor as SPAM
April 19, 2023 at 8:04 am
I had the same problem years ago, and for it I developed a very specific application.
I have a version of the application that currently only copies tables from SQL Server...
February 1, 2023 at 2:40 pm
Thank you very much for your reply.
Very interesting idea. I have turned my head, I have turned it to the left, to the right, up and down. It's good, and...
June 17, 2022 at 5:10 pm
Your answer is interesting, GeorgeCopeland.
In Spain, these types of tables are called master tables.
However, I don't fully understand your idea. Just a generic table with stored procedures? And the efficiency?...
June 16, 2022 at 10:41 pm
Thank you very much, ScottPletcher.
Your answer matches my assumptions.
June 16, 2022 at 10:27 pm
First of all, I would like to indicate that the previously set query had the objective of obtaining data: % fragmentation and % of used space. Its goal is not...
February 23, 2022 at 9:17 am
Obviously, it is an example of Query. Depending on the system, this query may be more or less useful.
If it is necessary to compact the lobs, the statement should be...
February 22, 2022 at 8:59 am
I think you have not used "sys.dm_db_index_physical_stats" correctly.
I attach a Query that could help you. Contains various flags indicating whether to rebuild indexes, reorganize indexes, or compact lobs. The limits...
February 22, 2022 at 8:50 am
Perhaps you should check the information contained in the link I send you: compacting LOBs could help you.
February 21, 2022 at 9:08 am
This was removed by the editor as SPAM
June 12, 2021 at 6:25 am
Here https://sqlperformance.com/2012/07/t-sql-queries/split-strings you have a performance comparison for some methods.
As you can see, the CLR versions have no comparison with the rest. You can build them with...
May 27, 2021 at 8:11 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[StringToTableStrings]
(
@cadena NVARCHAR(MAX),
@separador NVARCHAR(MAX) = N',',
@eliminarNulos BIT = 1,
@trim BIT = 1
) RETURNS TABLE...
December 6, 2019 at 11:50 am
Effectively. The usefulness of this function is not that of rapid execution, but the utility of the result. That is why there is a key that lists the results and...
December 5, 2019 at 3:36 pm
Viewing 15 posts - 1 through 15 (of 22 total)