Viewing 15 posts - 1 through 15 (of 16 total)
Thank u friend. my requirement is I want show batch wise Empnos in grid. this is my Requirement.
August 6, 2009 at 12:30 am
yes i want to show a Empnos batch wise .
August 6, 2009 at 12:20 am
yes i am not getting.
Please help me.
Regards
Swamy.
June 18, 2009 at 3:43 am
yes the rows are dynamic , but image types should be fixed.
June 18, 2009 at 3:33 am
yes there are always two image types so many customers.
June 18, 2009 at 3:32 am
Hi Try Below query .
Select studentID ,SUM(subjectMark) as TotalMarks FROM (
Select * ,ROW_NUMBER() over(partition by studentID order by subjectMark desc) as rowno
from tstudents)as Data Where Rowno < 5...
June 9, 2009 at 3:04 am
Hi Try Below query .
Select studentID ,SUM(subjectMark) as TotalMarks FROM (
Select * ,ROW_NUMBER() over(partition by studentID order by subjectMark desc) as rowno
from tstudents)as Data Where Rowno...
June 9, 2009 at 2:53 am
thank u for u r replay
.
my table name tEmployee i write shortly tEmp.ok.
one more thing , my problem solved.
when i am inserting time i passed like nvarchar value
ex:
Insert...
December 17, 2008 at 6:17 am
try this query it may works.
Select * , (select max(gps_datetime) as maxdate from gpsdata_history where gps_datetime >'07/13/2008' and gps_datetime<'07/14/2008' and analog2='stepii' and registrationno =data.registrationno ) from ...
July 14, 2008 at 11:14 pm
Thank u So much . it is working.:cool:
Declare @vc as varchar(max)
Select @vc = COALESCE(@vc + ',','') + EmployeeName from tEmployee
Select @vc
Regards
swamy.
July 10, 2008 at 12:54 am
Thank u.
Actually i donot know the rows in the temployee table
Hi
i have a table
tEmployee Column is Employeename
tEmployee
----------
Values
Employeename
--------------
scottt
Tiger
Huli
abrash
...
....
....
.....
upto end of rows
actually
select 'scott' union all
select 'Tiger' union all
select 'Huli' union...
July 9, 2008 at 7:34 am
Thank u.
yes first i am using The function only but to split the clientid
i am using the temp tables but in a function we cant use the temp table...
July 9, 2008 at 5:53 am
GSquared (6/27/2008)
You have to capture them in the calling procedure or code. Currently, there's no real error handling in T-SQL UDFs.
How to capture error's by using stored...
June 28, 2008 at 12:41 am
Thank u ,
How to capture the error's in User Defined Functions in SQL-Server.
Regards
Swamy.
June 27, 2008 at 7:22 am
Thank u so much
rbarryyoung
ok it is Working .
Regards
Swamy.
March 15, 2008 at 10:22 pm
Viewing 15 posts - 1 through 15 (of 16 total)