Viewing 15 posts - 271 through 285 (of 7,602 total)
Personally I'd just force-shrink the log, even if it "breaks the log chain". You would never want to try to apply a log that large any way.
(1) Take a full...
January 12, 2024 at 4:49 pm
Ken's code is nice, but theoretically I believe it could yield a false positive if the previous month happened to be 13 months prior to the current month. For example,...
January 11, 2024 at 3:33 pm
Can you please confirm this statement:
1 record has match is 2 because it has in 2 subsequent previous month data was there with mainhost
You are referring to the 2023-12-31...
January 11, 2024 at 3:22 pm
Just to be sure, run this query in your db:
SELECT * FROM sys.database_permissions WHERE state = 'D'
January 10, 2024 at 2:55 pm
There has to be a DENY somewhere to generate that message. DENY would override normal SELECT permissions.
January 10, 2024 at 2:42 pm
After you've row compressed the data, you can get a pretty idea for page compression using SQL's estimate:
EXEC sys.sp_estimate_data_compression_savings 'dbo', 'PlayersSets', NULL, NULL, 'PAGE'
January 10, 2024 at 2:37 pm
My original code gives a result for the new data, since I purposely wrote the original code generically:
~__2019121322545101GMTOFFSET=-18000&DPT=205~__2019121408520502GMTOFFSET=-18000~__2019121409443301GMTOFFSET=-18000&DPT=242~__2019121416570802GMTOFFSET=-18000~
2019-12-14 08:52:00.000
2019-12-14 09:44:00.000
If the first two values are not the correct ones, how...
January 5, 2024 at 7:11 pm
The code will just get the first two numbers, which might cause an "error" of bad data if the first two numbers don't have the datetimes you need. Otherwise, I...
January 4, 2024 at 8:53 pm
DROP TABLE IF EXISTS #data;
CREATE TABLE #data ( data varchar(4000) NULL );
INSERT INTO #data VALUES
('~__2019121407025301GMTOFFSET=-18000~__2019121415164202GMTOFFSET=-18000~')
SELECT data,
DATEADD(MINUTE, CAST(SUBSTRING(data, date1_start...
January 4, 2024 at 4:05 pm
Use EXISTS() instead of a JOIN (although SQL likely already is doing the equivalent of that in the plan, it doesn't hurt to be sure).
The only other thing you could...
January 3, 2024 at 9:24 pm
If you typically/most often query the table by Final_date, you need to cluster the table first on Final_date. If you have a column that would naturally make the index unique,...
January 2, 2024 at 3:09 pm
I think you would want something more like this:
DECLARE @DestinationTableName SYSNAME = 'dbo.tableA'
,@id NVARCHAR(30)
,@ProcessName VARCHAR(100) = 'ETL_InitialLoad'
,@SQL NVARCHAR(MAX)
SELECT @SQL = 'IF NOT EXISTS (SELECT * FROM dbo.ETL_lOG...
December 31, 2023 at 6:31 am
>> will process and return a table with Say DynamicMaster with column Distance added along with respective Data <<
How, specifically, does it return a table? Does it create a temp...
December 27, 2023 at 7:23 pm
Great. Glad it helped, and that the abbreviated way I posted it made sense.
December 20, 2023 at 3:42 pm
Viewing 15 posts - 271 through 285 (of 7,602 total)