Viewing 5 posts - 1 through 5 (of 5 total)
We still use Crystal Reports 9, and it works fine for our needs.
May 12, 2011 at 4:57 am
Here is a good tutorial:
http://justgeeks.blogspot.com/2008/08/using-t-sql-cursor-in-sql-server.html
But as is stated in the article, avoid this approach if possible.
October 30, 2009 at 9:27 am
If your system of ordering the records has to be in tht format you could try something along these lines (Not tested):
where right( location , len( location ) - 1...
September 14, 2009 at 2:40 pm
Select top 4 location
from Locations
where location >= 'A1'
September 11, 2009 at 1:13 pm
I think I've found the answer in another forum. It appears that the problem is a result of using a function in the check constraints.
A partitioning column exists on each...
August 29, 2009 at 4:08 pm
Viewing 5 posts - 1 through 5 (of 5 total)