Viewing 15 posts - 76 through 90 (of 153 total)
Hope the below links will help you...
http://www.sqlservercentral.com/articles/Development/commontableexpressionsinsqlserver2005/1758/
http://searchwindevelopment.techtarget.com/tip/0,289483,sid8_gci1278207,00.html
May 1, 2009 at 1:03 am
Bob, i just wanted to say what you said... 🙂
the difference is, i used temporary table and you used table variable.... 😀
April 30, 2009 at 10:40 pm
Hi Jaime,
Sorry! consider it as my reply in hurry....... 😛
April 29, 2009 at 7:19 am
@phumlo1
what exactly you want to know?
1) how to select duplicate records?
2) How to cleanup your database without keeping duplicate records?
Please give some more specification.
April 29, 2009 at 7:07 am
You can use temporary table into SP-1.
in sp-1
create table #temptbl (col1 dt1, col2 dt2)
insert into #temptbl exec sp2
......................
drop table #temptbl
April 29, 2009 at 7:00 am
Hi Jewel,
Please check if 'MSSQL.1' folder is exists into '..\Program Files\Microsoft SQL Server\'? - Do you have enough rights on the system?
- R u logged in with the same...
April 29, 2009 at 1:52 am
Hi Jaime,
I have some confusion in your code. here,
ALTER PROCEDURE [dbo].[EvalLogUpdateSproc]
@gStudentID uniqueidentifier
AS
UPDATE [dbo].[EvalLog] SET
[StudentRemarks] = (SELECT StudentsLog.Remarks FROM ClassRemarks WHERE StudentID = @gStudentID)
I think, you need to put where condition...
April 29, 2009 at 1:20 am
Stored procedure can return n number of output parameter that you specified while creating stored procedure.
So it is false that stored procedure return only one value.
Absolutely right... any stored procedure...
April 28, 2009 at 11:48 pm
what i understand regarding your post, due to that,
Yes, when I create the procedure that way it returns a recodset of several records. So in short, the answer to my...
April 26, 2009 at 11:51 pm
you can visit Microsoft notifications.. you may get something from there..
Also, check for Microsoft download notifications... this might not give you d latest news for all new releases, but provides...
April 26, 2009 at 11:39 pm
Can you pls specify what may be your inputs and what should be your desired output?
April 26, 2009 at 11:35 pm
@umar iqbal
I am hiring a lobbyist who can go to INDIA and get work from there and bring it here. How is that. i would love to see...
April 25, 2009 at 5:14 am
What will you get, if you hard code @workinschema variable into Cursor only? (mean, dont take it out of cursor)
April 23, 2009 at 6:22 am
You might not have select permission on [eLOTTERY]..[TB_eL_ApplicationPath] !!
Please check.
April 23, 2009 at 6:16 am
Viewing 15 posts - 76 through 90 (of 153 total)