Viewing 15 posts - 16 through 30 (of 42 total)
Hi
Data is getting imported, when i remove few contents from the file. Is there any problem in the data. if it is a problem then how to find it.....
January 23, 2008 at 1:00 am
I recommend you to check the user rights....
January 11, 2008 at 4:53 am
I have an query regarding index.....
ex
idx1 (emp,depid) non clustered index
an covering index was created in the combination of empid and depid. whether i need to use...
January 4, 2008 at 9:11 am
ok
if i have two non clustered index and trying to use the column in where clause i.e
ex:
ind1 empid (nonclustered)
ind2 ...
January 4, 2008 at 6:48 am
Thanks.
in my example if the index is created as
ind1 empid (non clustered)
ind2 empid and...
January 4, 2008 at 3:03 am
Hi,
why joins should be in the from clause not in where clause?
could you pls explain it...
January 2, 2008 at 12:31 am
Hi,
i recommend you to provide the code, so that presice solution can be provided.
January 2, 2008 at 12:29 am
select s1.account, s1.date
from @sample s1
where s1.date in (select TOP 3 s2.date from @sample s2
where s1.account = s2.account
order by s2.date desc)
group by s1.account, s1.date
order by s1.account, s1.date desc
I...
December 26, 2007 at 5:36 am
Thanks peter!!!!!!!!
Itz really useful for me. Now the above query will return latest 2 invoices for that account. if i need to return latest 10 or 12 invoices for that...
December 18, 2007 at 7:15 am
i used cursors for the above result.... but i need to avoid the cusrsor????
December 18, 2007 at 6:39 am
YES, I NEED ONLY LATEST 2 INVOICE FOR THAT ACCOUNT....DO YOU HAVE THE QUERY?????
December 18, 2007 at 6:30 am
i need to select only the latest 2 invoices for that account so inv4 should not be retrieved.
December 18, 2007 at 5:47 am
Viewing 15 posts - 16 through 30 (of 42 total)