Viewing 11 posts - 76 through 86 (of 86 total)
Hi Guys,
I got the Answer from this thread.
http://www.sqlservercentral.com/Forums/Topic1442095-1292-1.aspx
Thanks to Gila Monster
I just removed some unwanted indexes from my table and found that the Eager Spool has been removed...
July 29, 2013 at 7:11 am
DECLARE @date [datetime]
SELECT @date = MAX([datecolumn]) FROM [your_table]
SELECT [required column | * ]
FROM [your_table]
WHERE [datecolumn]=@date
Thanks,
Prabhu
July 26, 2013 at 11:43 am
Yeah,
I agree with you, sorry, I was unable to reply you in time.
when I went on working out that, I found the issue,
then i wrote this one, which...
July 26, 2013 at 11:35 am
Thanks Guys,
for reading my post,
finaly i got it,
yes,it is possible in the single query, it is..
select max(item) over()item from my_table where id = 5
Thanks,
Prabhu
July 25, 2013 at 7:06 am
Thanks for your effort dwain,
I think I have missed out something while populating the #loanheader, you my try the script with #loandetail instead of loandetail in the script directly....
February 5, 2013 at 4:30 am
Hi Steven,
I am really glad to see your post, My Hearty thanks for all your time & effort to help, really your Idea have helped me to get out this...
February 5, 2013 at 4:28 am
I really worried that there is nobody to help me regarding this issue, I was so confident that I could get a solution from this forum, but so far I...
February 4, 2013 at 10:58 am
Hi all,
thanks for your spending your finest time, I am sorry about "not giving my question clearly", but I have got some valuable tips from your replies that to avoid...
December 17, 2012 at 3:16 am
Hi Lowell,
yes, I tested the Idea which you suggested and found it is working, thanks for your valued time,
Thanks,
Prabhu...(siva)
November 22, 2012 at 12:17 am
Hi Gila,
Thanks for your effort to read my post, but the issue which I thought to overcome, has been suggested by lowell.
Thanks again,
Prabhu...
November 22, 2012 at 12:16 am
@Gila-Monster
Hi,
I would like to give you a small correction in your code which is the right one, it is a small thing but needed.
in your query you have given the...
November 17, 2012 at 12:27 am
Viewing 11 posts - 76 through 86 (of 86 total)