Viewing 15 posts - 1 through 15 (of 16 total)
I appreciate the fact that the OP was very honest about his question. He did not try to disguise it. I believe he needs a bit of hand holding. The...
October 15, 2018 at 9:13 pm
Try this:
SELECT
DF.LineNumber
,DF.MFN
,Years.TaxYear
,Tax.Value
FROM
@DisplayFields DF
CROSS JOIN (SELECT TaxYear FROM @tax GROUP BY TaxYear) Years
LEFT OUTER JOIN @tax Tax...
January 27, 2018 at 7:19 pm
Hi Chandrasekar Subramaniam,
We understand your intent was noble. Congratulations on your job.
Respect for Jeff. I have read his posts and articles ever since I joined SQLServerCentral. He has...
December 18, 2017 at 7:15 am
Dear Mr Chandrasekar Subramaniam,
Please be polite. You are the one asking for help. A good mentor is not one who gives answers to your questions, but the one who...
December 18, 2017 at 5:44 am
November 20, 2017 at 7:44 pm
Paul White (3/1/2010)
Jonathan Kehayias (3/1/2010)
It probably was clustered, its common for App Developers to do this kind of thing. It happened at Microsoft around the Windows 7 RC downloads...
Ah...
March 1, 2010 at 8:07 pm
I've been using GUID as PKs, but this is a novel way of using it. Great.
March 1, 2010 at 12:18 am
Nice post.
Just out of curiosity/ignorance/inexperience, may I ask you where are we likely to write 50000-100000 lines of Dynamic SQL. I only have ~2 yrs of exp with SQL, that...
July 29, 2009 at 7:01 am
Perfect
Thanks a lot, Raj.
Adish
February 6, 2009 at 6:58 am
Thanks Grant, I will try that out. Maybe I should be looking for the solution on .Net forums also.
Adish
February 5, 2009 at 9:03 am
It was only important to set one trigger as 'Last'. The order of others was immaterial. When I said 'a sequence', it seems I did not use the appropriate word...
December 13, 2008 at 9:56 am
Thanks bitbucket and RBarryYoung, both the links were helpful.
December 13, 2008 at 9:05 am
Hi
The column Display is a computed column
The column Number is int
The expr used in the column properties for Computed Column Specification is:
(coalesce(CONVERT([nvarchar](20),[Number],0),'Not Assigned'))
or
(coalesce(CONVERT([nvarchar](20),[Number],0),' Not Assigned'))
or
(coalesce(CONVERT([nvarchar](20),[Number],0),' ...
December 13, 2008 at 9:02 am
Hi Guys
It looks like there was some old data in the table which made it appear that the display was not correct.However, the code is working fine. But there is...
December 13, 2008 at 1:08 am
Viewing 15 posts - 1 through 15 (of 16 total)