Viewing 15 posts - 1,246 through 1,260 (of 2,654 total)
lots of things can cause that - but without table definitions (including indexes and FK's), row counts for each table, view definition as well as any function used within those...
January 31, 2021 at 9:03 pm
LastName INCLUDE (ProductID, FirstName) and LastName INCLUDE (FirstName) are the same in this case as ProductID is the clustered index "key".
regarding your indexes I misread your original post.
LastName, DateDeleted INCLUDE(FirstName)WHERE...
January 29, 2021 at 12:06 pm
was apply available on sql 2005?
January 29, 2021 at 11:41 am
your issue is not the ProductID but the DateDeleted. This last field is what is causing the key lookups as it is not part of the second index (ProductID is...
January 29, 2021 at 11:37 am
might be worth checking filenames of attachments - could also happen that someone adds a filename with special characters just in case it does not go through same code
January 28, 2021 at 11:43 am
try and change the keywords to match the EXACT casing for install as per documentation.
there were other users reporting errors where this sorted the issues they had.
setup.exe /UpdateSource="E:\SQL_2019\patches" /ACTION=Patch /AllInstances...
January 24, 2021 at 6:16 pm
its more than that - and it can be done with set based instead of a cursor assuming doing it in T-SQL alone.
but take in consideration this aspect you have...
January 24, 2021 at 8:19 am
because your node names is not reports/report but RECORDS/RECORD
cross apply c.nodes('/RECORDS/RECORD') as A(REPORT)
January 19, 2021 at 4:27 pm
thats fine -
what I have, which is what I told you to get, is a I7, 6 core, 32GB ram , ssd disks.
I do heavy processing on it (db is...
January 18, 2021 at 5:20 pm
and be careful with inserting data onto remote server through a linked server . it is EXTREMELLY slow as it does it a record at the time.
if there is any...
January 18, 2021 at 5:06 pm
if you already have a good spec (you didn't tell us what you have) then you might be better off supplying us with some of your "bad behaved" queries and...
January 17, 2021 at 7:51 pm
sorry but I did not say that is should be 10-20% max.
What I said is that in one of my servers (and we have over 800 SQL servers) we have...
January 17, 2021 at 3:31 pm
get an I7/I9 with 6 cores+ and 32GB+ ram and some SSD disks.
you may also need to tweek max DOP and CTFP so your queries to not overload the machine....
January 17, 2021 at 11:51 am
what may have left you bad was mixing cpu with log file growth.
although for SQL to grow a file it requires a small amount of cpu that is not enough...
January 16, 2021 at 5:53 pm
can you supply a ACTUAL plan instead of estimated of a query with problems - a 1 row estimated is not an issue
on the plan you supplied your big issues...
January 15, 2021 at 12:25 pm
Viewing 15 posts - 1,246 through 1,260 (of 2,654 total)