Viewing 15 posts - 436 through 450 (of 7,472 total)
I would use datalength(v.String) so the training space at the end shows up too, so nobody checking your script actually has to doublecheck the behavior of trailing spaces.
( btw: this...
March 8, 2023 at 9:36 am
did you check this article "SQL Server Performance Counter are Missing"
March 6, 2023 at 7:56 am
Did you try this ?
Declare @tb table ( varcharcol varchar(10) not null )
insert into @tb
values ( '23:01'),( '00:01'),( '00:02'),( '00:03'),( '22:00')
;with cteTimes as (
Select...
March 2, 2023 at 7:45 am
Looking at the provided data, someone had to produce XML, but missed the moint of it
<GrpID>Group ID: 14080.</GrpID>
should in fact be <GrpID>14080</GrpID> ( unless the "." has an actual significance,...
March 2, 2023 at 7:25 am
As you noticed, something went wrong somewhere in 2011.
Did someone forget to:
Anyway, Whenever I implement a partitioned table, I implement boundary constraints,...
February 16, 2023 at 8:09 am
I haven't encountered a developer yet, who wrote such a query himself, without using the "query designer".
I've seen some cases where it actually provided a performance advantage, however, I plead...
February 15, 2023 at 7:53 am
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
Viewing 15 posts - 436 through 450 (of 7,472 total)