Viewing 7 posts - 16 through 22 (of 22 total)
When I inserted first time it gave me the same getdate(). After your comments I tried agian and got diffrent result for getdate().
But if the requiremnet is to get the...
December 8, 2010 at 12:50 am
Can you explain your requirement clearly ...
As per my understanding I've written the below query,
select * from mfRepositoryErrors where errid in (select max(A.rn) from (select row_number() over ( partition by...
December 7, 2010 at 3:05 am
declare @opt char
set @opt='R' -- Set your required parameter value
select * from #trades
WHERE
(
CASE
WHEN ((@opt = 'A' AND parentTradeId is...
December 7, 2010 at 12:23 am
create procedure [dbo].[selectMediCalProcedureCode]
@CodeID int
as
begin
set nocount on
select ProcedureID
from hrp_CrosswalkProcedureCode
where Entity = 'Medi-Cal'
and ProcedureID in( select * -- explicitly specify the column name if you have mutiple columns in cln_ServiceInstance table
from...
December 6, 2010 at 11:51 pm
Have a look to this link :
http://www.sql-server-performance.com/articles/per/temp_tables_vs_variables_p1.aspx
December 5, 2010 at 12:29 pm
Thanks for notifying me.
I do take care of thread age before posting any comments.
December 5, 2010 at 11:00 am
Its depends on your individual decision. If you want to test yourself then you can go for certification.
After all getting certified in a product is not at all a waste...
December 4, 2010 at 11:50 am
Viewing 7 posts - 16 through 22 (of 22 total)