Viewing 15 posts - 76 through 90 (of 329 total)
No infact it has more memory allocated
June 24, 2021 at 1:04 am
@Grant/All,absolutely, the advise I have received from this community has been unparalleled.Learnt a lot from here and I rely more here than the web.
Initially the DB was not a true...
June 22, 2021 at 11:41 pm
My bad ,I understand. Thanks again @Grant.
June 22, 2021 at 3:36 pm
@scott,@Grant,@Steve, All
We have again done a straight back and restore across enterprise to standard.Under what circumstances can the execution plans be different.Both instances run on same windows and...
June 21, 2021 at 7:34 pm
Stats were never updated on both the versions (standard and enterprise).Both stand 2 years old.Checked some tables which are referred in the stored proc.They stats are the same.
Looks like statistics...
June 21, 2021 at 5:08 pm
@steve-2 Jones, @Grant and all,
Thank you.
I have saved the execution plans from enterprise and standard edition. How can I force the stored procedure to use the enterprise plan...
June 21, 2021 at 10:05 am
I did nothing.They just became readable.
Thanks
June 20, 2021 at 3:45 pm
@Steve. Thanks
What settings/config values should be checking in Standard and enterprise (fyi:both on same machine)to troubleshoot this.A back and restore has been done from enterprise to standard, so...
June 18, 2021 at 7:21 pm
Thank you @Grant and everybody else.
Can a Stored Procedure(has several parameters as input) run differently in standard or enterprise version when executed from SSMS when compared getting triggered from the...
June 18, 2021 at 4:36 pm
Thank you everybody.
June 15, 2021 at 3:15 pm
Thank you all for the responses.
And how do we draw a parallel between indexes and statistics(updated/not updated).
Ex: Something like a query which gives me an index and its statistics and...
May 3, 2021 at 7:38 am
Hello @Brian,
Method1 :This works:
Data is encrypted upon insert.
USE MyDB;
GO
OPEN SYMMETRIC KEY SK1
DECRYPTION BY CERTIFICATE C1;
GO
INSERT into
[dbo].[SQLCredentials]
([Server],
[Password],
[Password_Encrypted])
VALUES
(N'ABCXYZ ',N'sdf^jh&k*',ENCRYPTBYKEY(key_guid('SK1'),'sdf^jh&k*'))
GO
CLOSE SYMMETRIC KEY SK1;
GO
USE...
March 12, 2021 at 10:48 pm
Thanks @Brian for the detailed explanation and your time.
March 12, 2021 at 3:15 am
Viewing 15 posts - 76 through 90 (of 329 total)