Viewing 15 posts - 91 through 105 (of 159 total)
about this topic , do you have any other solution? thanks!
November 9, 2020 at 6:48 am
Thank you Jeff Moden for you kind help!
you said "Understanding that there are at least 6 different Insert/Update patterns and the 4 of them are seriously affected by "ExpAnsive" updates....
November 9, 2020 at 6:43 am
I used SQL profile to trace SQL Statement and found user use insert bulk to insert data for a table, but the sql statment is too long (over...
November 9, 2020 at 2:57 am
INSERT BULK is from .Net SqlBulkCopy class, so someone has coded an application which is using that class to load in some data
Thank you, this article of the link...
November 9, 2020 at 2:57 am
Thank you Grant Fritchey!
I don't have Web Service RDS, but I ran below SQL Statement on local SQL Server and got information as the file.
SELECT dl.deadlockgraph
FROM
(
SELECT dl.query('.') AS...
November 6, 2020 at 2:25 pm
Here's a very thorough article on BULK INSERT. In general, it can be faster for large data moves. It may use less locking. It may use fewer log...
November 6, 2020 at 2:20 pm
November 6, 2020 at 3:51 am
You could automate the backup/restore process with a bit of scripting.
If you have enough space on your 'data query' server to host two versions of the database, you could...
November 4, 2020 at 12:35 am
Lordy... some designer needs a serious pork chop lesson on the first rule of the First Normal Form. <facepalm>.
The only way you're going to be able to fix this...
November 4, 2020 at 12:30 am
> how to optimize the query from the table design to create index and statisctis ? <<
As Jeff said, you can't, not with the data in its current form.
You...
November 4, 2020 at 12:27 am
November 3, 2020 at 12:35 am
Are there lots of different tables being changed? If so, the answer is likely to be one of
If only...
November 2, 2020 at 3:06 pm
Yes, the target table has a identity column, the said "disable" identity column means I set the identity column No under the table's identity specification.
actually, the indentity column...
November 2, 2020 at 12:59 am
Yes, the target table has a identity column, the said "disable" identity column means I set the identity column No under the table's identity specification.
actually, the indentity column is not...
November 1, 2020 at 4:57 am
You do realize that by setting your database to SIMPLE that you just broke your logfile chain if one existed, right?
Shifting gears back to the problem at hand.... what...
November 1, 2020 at 2:29 am
Viewing 15 posts - 91 through 105 (of 159 total)