Viewing 15 posts - 871 through 885 (of 2,649 total)
can you put the full DDL for the table - including indexes and data_compression clause. (you may need to change your ssms settings for generationg scripts for all these to...
June 3, 2022 at 1:02 pm
forgot to add that option to the list.
to sort it out add
@SortInTempdb = 'Y'
to that list of options
with regards to that long run - get a copy of sp_whoisactive and...
June 3, 2022 at 10:15 am
google - the information you need is very abundance and clear - and if you don't have access to install those modules speak with your admins to get it installed.
June 2, 2022 at 6:07 pm
or the one below - but output will never be the one you desire
Select *
from (select distinct VID
...
June 1, 2022 at 6:45 pm
then its time for you to read the manuals - keyword TRIM
May 31, 2022 at 4:31 pm
based on the code by Jeff the only way you get that error is if your file contains a line that has data and does not have a ":" or...
May 31, 2022 at 6:29 am
It is normal on the case of that table - it is a very small table and even if you rebuild it manually the fragmentation may not change - or...
May 31, 2022 at 6:06 am
you really have no idea of what you are doing neither do you follow the advise of this forum experts. on this case you decided to change the supplied code...
May 29, 2022 at 12:54 pm
on some of my busy and misbehaved servers I have the following query running every 10 seconds with output to a table.
with this table its easy to identify queries that...
May 29, 2022 at 11:05 am
I would add to that a verification - if number of posts = number of spam posts and user has more than 5/10 such posts just block them next time...
May 28, 2022 at 12:22 pm
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
Viewing 15 posts - 871 through 885 (of 2,649 total)