Viewing 15 posts - 511 through 525 (of 7,466 total)
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
You have to investigate what is causing that much tempdb consumption.
August 11, 2022 at 7:27 am
check sp_refreshview
EXEC sp_refreshview '[View_SCHEMA].[ViewName]'
August 9, 2022 at 9:53 am
Double check SQLServer "max server memory (MB)" setting has been configured on 64-bit systems ! ( or it will consume nearly all available ram and compete for it !)
Check "
August 9, 2022 at 8:06 am
August 8, 2022 at 12:57 pm
Make sure you have added the service account in the security policy to "perform volume maintenance" ! (= activate Instant File Initialisation ) ( needs a restart of the instance...
August 8, 2022 at 12:20 pm
With most articles, you can pose questions.
As these people have tested the subject, they may already have the answer ready or even blog about it later on.
August 2, 2022 at 7:34 am
Viewing 15 posts - 511 through 525 (of 7,466 total)