Viewing 15 posts - 886 through 900 (of 2,654 total)
a simple google search finds a few hits.
one of them is https://dba.stackexchange.com/questions/41961/how-to-find-all-positions-of-a-string-within-another-string
May 27, 2022 at 6:53 am
have a look at the following links for info
https://www.sqlservercentral.com/forums/topic/review-ola-hallengren-indexoptimize-parameters
https://www.youtube.com/watch?v=rvZwMNJxqVo
https://www.sqlservercentral.com/forums/topic/index-fragmentation-42
regarding your particular need to do it on a subset of tables - don't worry about creating a custom script for it.
Ola's...
May 27, 2022 at 6:29 am
IF (SUSER_NAME() in ( 'DOMANINA\GMSA_999SQLAgt$', 'user', 'user3', 'user4'))
this is basic sql
May 26, 2022 at 4:41 pm
having one of the above running you always have the statements on the database for investigation.
Even if they aren't consuming high CPU having the history (mainly the second query I...
May 26, 2022 at 4:34 pm
I could not find it (and I'm sure you searched as well) - but you can do it manually with T-SQL.
what the wizard does on the background is defined in...
May 26, 2022 at 8:26 am
you don't do it when you have high cpu - you have it running all the time with 10,20, 30, 60 seconds interval or so depending on how busy your...
May 25, 2022 at 10:58 am
I'll let Jeff do some chopping but WHY Reorganize? this should be avoided almost at all costs (very few exceptions)
May 25, 2022 at 10:11 am
with db in simple recovery the following can cause the log to grow.
May 23, 2022 at 4:41 pm
the OP means the pipe "|" between strings
May 23, 2022 at 1:53 pm
I think that knowing why and how that function is called so many times may help pointing you to a better solution.
how all those hierarchical rules are applied may also...
May 21, 2022 at 2:21 pm
SSAS memory settings are the culprit here. In Enterprise edition, the memory limit for SSAS is the server max, so it is very probable that SSAS is competing against...
May 18, 2022 at 6:30 pm
make sure that TCP/IP protocol is enabled on the sql instance -= need to do it on server itself
May 7, 2022 at 5:15 pm
the query above would give an error with variable @FromDate as it is not declare WITHIN the @sql
if you are doing a exec @sql then this would fail - different...
May 5, 2022 at 2:07 pm
likely your tabular server memory settings not setup correctly - these can be tricky and need to be set according to whatever memory is available to the particular tabular instance...
April 26, 2022 at 8:06 pm
there are multiple things that can cause a connection to drop - increasing the timeout will not prevent those as it is only meant to prevent the timeout error itself.
for...
April 26, 2022 at 6:40 am
Viewing 15 posts - 886 through 900 (of 2,654 total)