Viewing 15 posts - 436 through 450 (of 7,466 total)
If only it would work.
It always generates this error
February 13, 2023 at 6:42 am
did you also try using double quotes ? "," ( it's command line, not tsql)
February 7, 2023 at 2:16 pm
This is the link holding the part that causes your confusion:
Performance improvements in tempdb for SQL Server
February 7, 2023 at 1:44 pm
check the "mode" parameter of the sys.dm_db_physical_stats function
February 7, 2023 at 12:40 pm
As this is the only clustered instance which produces these warnings and errors, we suspect SentinelOne - which we are testing on one of the nodes.
We moved the instance to...
February 1, 2023 at 10:44 am
Please do keep in mind, if in case of major DRP, starting from scratch, you could end up with a partially working engine if you just install the latest version...
January 30, 2023 at 2:38 pm
Using Set HADR OFF you're telling the engine to forget the whole content of the replica !
did you try granting the account "view definition" on these specific databases ?
Using "any database" should indeed cover it all, but ...
use [yourdb]
create user ...
GRANT view definition...
January 26, 2023 at 1:32 pm
tempdb version store is always used whenever snapshot isolation is used with any query or database !
January 25, 2023 at 10:52 am
Most common mistake is to put data into a varbinary(max) column data is frequently needed for filtering etc.
IMHO that is not what this data type is intended for. ( with...
December 16, 2022 at 8:35 am
I hope your tenants don't have direct ( e.g. SSMS ) access to the database with mixed-tenant information in the objects.
December 1, 2022 at 1:48 pm
CustomerAcctNo DECIMAL(9, 2) ??? 1234567.02 ?
GPF DECIMAL(9, 2) ?? you expect big tanks ? 9999999.99 GPF
Rebate DECIMAL(3, 2) ?? don't you expect rabates to potentially be > 9,99
December 1, 2022 at 1:42 pm
have you tried Select ... from morerecenttable EXCEPT select ... from oldersnapshot
This gives you new and modified rows. Having that set, you can compare with individual columns
November 25, 2022 at 3:33 pm
don't use dynamic sql in your stored procedures! ( or use only parameterized queries with the semi generated sql )
don't grand datareader/datawriter !! Only grant exec for sprocs it is...
November 23, 2022 at 8:02 am
I would say "Yes" as it is a logged and persisted operation.
Easy to check using sys.dm_db_stats_properties for a given statistics.
November 19, 2022 at 5:37 pm
Viewing 15 posts - 436 through 450 (of 7,466 total)