Viewing 15 posts - 1 through 15 (of 28 total)
Thanks for your quick reply John,
Unfortunately that did not yield a result.
However, I tried something else.
SELECT
T.QTY,
T.CustomerID,
T.ActivityID,
T.RelatedReferenceID,
T.[Due Date],
T.[RecordStarted],
T.[TableSummary],
T.[TableType],
T.[Team Member],
T.[TableStatus]
FROM (
SELECT
S.*
, ROW_NUMBER() OVER...
June 24, 2019 at 12:32 am
Matt - Thanks you for this. It's brilliant. It's a nice and simple solution!
June 19, 2019 at 10:56 pm
Matt - Thanks for this tip. It appears to offer similar results to alternative methods and is a lot simpler to use.
I'm curious about how to add additional information into...
June 18, 2019 at 12:50 am
Hi all, And thanks so far for all your help. It is much appreciated.
However, nothing I try works to produce a result. Clearly the issue lies in my not understanding...
June 17, 2019 at 12:05 am
Thanks for your help and effort to code this.
I've run this and it seems to work beautifully. There's no chance I would have figure out this so thanks a lot.
June 5, 2019 at 3:53 am
Thanks you both for your input.
I did a little reading and came up with this modification:
USE [MyDB]
GO
OPEN SYMMETRIC KEY EncryptPIIKEY
DECRYPTION BY CERTIFICATE EncryptPIICert
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE...
May 23, 2019 at 10:45 pm
Thank you for your response.
I'm sorry to say this method seems more complicated that my original script. I tried testing it and ended up with the error: Must declare the...
May 20, 2019 at 11:04 pm
Hi Grant,
Thanks for the advice. My organisation keeps a dedicated SQL server someplace and I have been advised there is a possibility of it falling over from time...
February 19, 2019 at 4:12 pm
Thanks Pietlinden
So seems like you know my issue. Can you point me to a technical solution?
I use a number of SP's and views. I may have...
February 18, 2019 at 5:59 pm
The entire dataset is less than 2GB in size and if it were bigger I'd split the tables into two. Rght now, it's not that big.
I just don't...
February 18, 2019 at 5:45 pm
Thank you. Yes, I know the benefit of SP's and this will be helpful.
This issues will be fa more complicated than just this little snippet and many problems...
February 13, 2019 at 3:06 pm
February 12, 2019 at 8:52 pm
Hi Drew,
Gee, thanks so much for the effort here. Much appreciated.
I am using SQL 2008 server. not sure if that means very much but i am...
February 12, 2019 at 3:17 pm
Ok great. Thanks for the updated description.The logic sounds wonderful and sure I'd be more than willing to push for a better solution than the one we use.
February 12, 2019 at 2:56 pm
it's a little complex but this is a set of records that maintain customer balances with us. Each day the record remain the same until such a day as the...
February 12, 2019 at 2:31 pm
Viewing 15 posts - 1 through 15 (of 28 total)