Viewing 15 posts - 91 through 105 (of 154 total)
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
Thank everyone for your kind and good advice! thanks so much!
October 31, 2020 at 1:51 pm
Frederico .... maybe you're onto something.
Your query has multiple references to ftbid01 which obviously should be to 01, 02, 03, ...
The outer apply could be a cross apply, or...
October 27, 2020 at 1:02 am
if I got it correctly the dynamic requirement is that its not the content of the field that is being updated but rather that the field it is being...
October 27, 2020 at 1:00 am
If you provide DDL, samples data and expected results, we can help. Not sure what you have and what you are looking for in your description
Please kind see my...
October 26, 2020 at 2:33 pm
Viewing 15 posts - 91 through 105 (of 154 total)