Viewing 15 posts - 406 through 420 (of 543 total)
Thanks a lot CTEGuy & Chris.
@thom-2 - this is just an example. I wanted to implement this for any tables which has same number of columns and...
October 18, 2017 at 3:55 am
Thanks a lot Luis and Thom for the suggestions.
October 13, 2017 at 2:19 pm
Hi All,
Thanks for the suggestions. Thanks a lot.
One thing, came into my mind, how can we make this dynamic?? Meaning, if the number of columns...
October 5, 2017 at 1:54 am
Tried it myself.
;With MyCTE as(
SELECT account_no, MIN(payment_dt) AS MinPymtDt
FROM LoanPaymentHistory
GROUP BY account_no
)
select
ah.AccountHolderFirstname+' '+AccountHolderLastname as Fullname,
ah.email,
at.AccntTypeDesc,
bb.BranchLocation,
September 25, 2017 at 11:52 am
Thanks Arsh.
September 12, 2017 at 11:53 pm
Pl find attach plan. Sort it by actual number of rows in desc order. its an actual execution plan generated in SQL Sentry plan explorer.
August 29, 2017 at 11:16 am
NOLOCK is used for peformance sake to avoid blockings. Again, its a business decision and we are just vendors. This is a typical Warehouse system and once data loaded to...
August 29, 2017 at 6:16 am
Hi Gail, Any text books that you would suggest on Indexing with worked out examples. I want to keep 1 or 2 books for reading.
August 28, 2017 at 2:03 pm
August 24, 2017 at 12:07 pm
Hi Chris,
I tried to create those covering indexes but i didnt see much improvement in query performance . it was 5-10 sec difference. Sometimes the query without indices...
August 24, 2017 at 11:58 am
Viewing 15 posts - 406 through 420 (of 543 total)