Viewing 15 posts - 1,291 through 1,305 (of 2,693 total)
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
not much you can do on this except remove the sort.
plan here https://www.brentozar.com/pastetheplan/?id=BJrAKS0RD
SELECT [DocumentCategory].[CategoryID] AS [CategoryID]
, [DocumentCategory].[ProcessEvents] AS [ProcessEvents]
...
January 14, 2021 at 10:42 pm
stop mixing questions - you asked for something that was answered - thats it.
your last post is a completely different question - so raise a new thread for it.
But before...
January 14, 2021 at 7:37 pm
if there is a FK column on that column and the column is not null(not sure if this one required) then if no column is retrieved from the other table...
January 14, 2021 at 6:10 pm
regarding using "PKWare SecureZip" - this is a commercial software - I suggest you also look at 7zip - quite good and free.
all remaining comments above apply.
January 14, 2021 at 5:29 pm
kind of you can.
January 14, 2021 at 3:24 pm
you can do it - but not easy.
option 1 - Sharepoint Excel Services - https://docs.microsoft.com/en-us/sharepoint/dev/general-development/excel-services-overview
option 2 - use OpenXML https://github.com/OfficeDev/Open-XML-SDK - C# code - better as an independent...
January 12, 2021 at 5:35 pm
Viewing 15 posts - 1,291 through 1,305 (of 2,693 total)