Viewing 15 posts - 1,291 through 1,305 (of 2,701 total)
Thanks @frederico, but wouldn't the data pages keep on changing every time we run index reorg or index rebuild?
yes - but by giving them those pages on a file...
February 11, 2021 at 10:25 pm
you can - but it would be completely useless for any intents and purposes. small c# program open file binary, read first 25 pages (25*8k bytes) and do same for...
February 11, 2021 at 7:00 pm
not wishing to minimize the article itself which I consider well written I wonder why would posting this on a SQL Server forum be a good idea.
February 9, 2021 at 2:53 pm
No issues from a compatibility point of view for having both running on same box - obviously resource sharing is where one may impact the other but if both are...
February 2, 2021 at 6:49 pm
not sure if it was just a typo but the example supplied is only adding a single quote to the item on the middle - so clarification on the requirements...
February 1, 2021 at 10:57 pm
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
Viewing 15 posts - 1,291 through 1,305 (of 2,701 total)