Viewing 15 posts - 511 through 525 (of 7,472 total)
Is that 1,5TB compressed backup size?
Will you be using backup to url= blobstorage(v2?)
or backup to azure file storage?
network speed 100mbps: is that your internet connection speed?
Are you the only user...
September 7, 2022 at 11:12 am
Best you can do is to script out the endpoint you've created using SSMS and SQL authentication and see what it used.
We always user the sql server service accounts (...
September 7, 2022 at 11:05 am
Make sure you're keeping up with these cumulative updates ! They fix a lot, but you'll have to test !
It's almost humorous as to the amount of irony...
September 7, 2022 at 7:31 am
ah, the joys of would be JSON
SUBSTRING to the rescue
declare @wouldbejson NVARCHAR(200) = N'{BATHROOM CLEANING}{2.5%}'
Select charindex(N'{',@wouldbejson, 1) as firstoffset
, charindex(N'}',@wouldbejson,1) as firstEndOffset
, charindex(N'}{',@wouldbejson, 1)...
September 7, 2022 at 7:26 am
Or, setup a Default and use the WITH VALUES option,
The end result is the same though. There cannot be any NULLs in a NOT NULL column.
Why did it take...
September 7, 2022 at 6:48 am
Current for SQL2019 is CU17 ! Make sure you're keeping up with these cumulative updates ! They fix a lot, but you'll have to test !
Also: check "Manage...
September 6, 2022 at 11:54 am
This may be a start
SELECT object_schema_name(object_id) As ObjSchema, object_name(object_id) As ObjName, replace (T.definition, 'WITH SCHEMABINDING', '/*WITH SCHEMABINDING*/') as NewDefinition
FROM sys.sql_modules T
where is_schema_bound = 1
order by ObjSchema, ObjName
TEST...
September 6, 2022 at 11:35 am
For AD-groups, it no default is used.(as an ad-account may have access through multiple ad-groups)
For SQLusers, the engine sets it to "dbo" by default.
I have noticed this works ! (...
September 2, 2022 at 9:43 am
First problem:
This cte will return all rows of county.reporting.dbo.2022 whenever there are results in cte1 ! ( no where clause in exists query )
Same for the second union part
deduplicated by...
August 31, 2022 at 6:39 am
LEFT is also non-sargable so you will get a scan with that second query.
To make it sargable you would need to use LIKE instead. Thanks
"Like" does not work with...
August 25, 2022 at 7:17 am
Performance has a cost.
That cost starts with declaring the correct data type for columns !
August 25, 2022 at 5:48 am
If that is the only task in your ssis package, why not use Powershell ?
Dbatools
August 23, 2022 at 11:16 am
Short but very enjoyable indeed 🙂
A bit of Fulltext history can be found at ref: "Full-text index architecture"
August 22, 2022 at 12:25 pm
Thank you for the feedback.
( I was out for a week of vacation. )
Just wondering why you add the uniqueidentifier to the physical filename ??
Move N'ftrow_FTC_titles' to N'E:\Program Files\Microsoft SQL...
August 22, 2022 at 9:20 am
you need to extract the logical filenames from the backup file!
you need to hard code the full restore statement (or generate the statement in to a variable to be executed...
August 12, 2022 at 12:47 pm
Viewing 15 posts - 511 through 525 (of 7,472 total)