Viewing 15 posts - 8,281 through 8,295 (of 59,078 total)
Database is Full Recovery Model...it is not possible to change Bulk logged recovery model
My other question, which has still been unanswered is... can we create another database for the...
November 25, 2019 at 8:19 am
Nice job, Mike.
One of the biggest problems is that there are a huge number of common circumstances where lowing the FILL FACTOR will do absolutely nothing to prevent the page...
November 25, 2019 at 6:55 am
OK... You still haven't answered my question but, based on your acceptance of Jonathan's good code, I'll assume the answer is "Yes, that's all correct".
You asked for correction if you...
November 25, 2019 at 4:43 am
I prefer "implicit transaction", they are more safe than "begin tran" in case you use "GO" in the script.
SET IMPLICIT_TRANSACTIONS ON
;with a
as
(
SELECT * FROM dbo.account WHERE...
November 25, 2019 at 2:30 am
I am using the query is
SELECT id,name,xmldata INTO New_Table Name from TableName
Yep... you said that from the git. Can you answer my previous questions so I can best help...
November 24, 2019 at 8:15 pm
Did you actually try the solution you found? I ask because it may be that the package isn't actually running as you as you think. I'm not an SSIS kind...
November 24, 2019 at 7:54 pm
Hi Jeff,
as you mentioned in the previous thread, you came across this situation and you have solved this issue in different way. would you be able to pitch in...
November 24, 2019 at 7:27 pm
I'll be the first to admit that I'm a bit of a T-SQL zealot when it comes to doing things with data. A part of the reason is that I've...
November 24, 2019 at 7:01 pm
to go along with what the other folks have written...
The biggest difference is that it will not be possible to get index seeks on the 3 column index if the...
November 23, 2019 at 3:08 am
We had that happen to us the other day... exact same symptoms. It turned out to be a cable where a partial connection in an RJ-45 jack finally backed out...
November 23, 2019 at 2:16 am
What's really stupid is that Jonathan is absolutely correct (and, NO, I'm NOT saying Jonathan is stupid... Jonathan is far from stupid and only occasionally resorts to RBAR :D...
November 23, 2019 at 1:50 am
I guess I'm different... perhaps, a lot different. AG is nice and all but, to me, AG has NOTHING to do with DR and vice versa. To me, DR is...
November 23, 2019 at 1:25 am
What Jeff wrote is enough to scare me away from even trying this approach. Using internal locking could enable end-users to do things which produce unpredictable performance. You wrote...
November 22, 2019 at 1:48 pm
Can the database be set to the BULK LOGGED recovery model? If not, can we put this table in a new, single table database that can?
Also, how up to date...
November 22, 2019 at 1:00 pm
Hello,
i have a table called Codes and having below columns
Declare table Codes(IdCode int identity(1,1) primary key, EmpCode varchar(10) unique key, AllotedStatus bit default 0)
i will get...
November 22, 2019 at 12:56 pm
Viewing 15 posts - 8,281 through 8,295 (of 59,078 total)