Viewing 15 posts - 16 through 30 (of 43 total)
if u are connecting using sa login it will not give any error regarding access. If u are connecting using windows authentication, that login id should have permission on...
January 10, 2008 at 3:13 am
you can use order by at the end of the querry
December 13, 2007 at 1:45 am
check for relavant dbcc commants and add it to the scheduler
December 5, 2007 at 4:11 am
can u just put the querry or or some structure of the querry so that one can reply ur querry quicker
December 5, 2007 at 4:08 am
The main purpose of cross join is to give the all possible combinations of the join of the two tables
December 4, 2007 at 2:34 am
use the below querry,
select top 1 with ties teacher_id from
(select t.teacher_id, count(*) 'cnt' from teacher t
left join student s on t.teacher_id = s.teacher_id
group by t.teacher_id)
order by cnt...
December 4, 2007 at 2:30 am
u can try database_id
November 29, 2007 at 11:30 pm
u can store the table which are storing files into seperate filegroup which should be placed on seperate disk. Then if will not effect the performance of ur application...
November 29, 2007 at 10:33 pm
in case of view, u have to use it viewname.column name then it will b ok
November 29, 2007 at 10:30 pm
just apply service pack2 for sql 2005 and you will feel good once u update the service pack
November 29, 2007 at 2:26 am
u can use
sp_executesql
November 29, 2007 at 2:19 am
try the below querry
select id, col1 from table
union all
select id, col2 as 'col1' from table
order by col1
November 29, 2007 at 2:17 am
what u are looking for is not clear?,
present your clear requirement.
November 29, 2007 at 2:14 am
Viewing 15 posts - 16 through 30 (of 43 total)