Viewing 4 posts - 1 through 4 (of 4 total)
Microsft needs to make this clearer. RS only needs the shell environment. So to develop reports for Reporting Services you only need to have VB.Net (~$99) and not VS .Net.
January 27, 2004 at 10:58 pm
Try changing
Country CHAR(30)
to
Country VARCHAR(30)
December 14, 2003 at 1:57 pm
quote:
Here's a function patterned after the UNIX fold utility
CREATE FUNCTION Fold (
@pMaxWidthsmallint,
@pStringvarchar(7800)
)
RETURNS varchar(8000)
BEGIN
DECLARE...
December 3, 2003 at 8:21 pm
Here's a working example using the Northwind DB:
USE Northwind
SELECT P.*
FROM Products P
WHERE P.ProductID IN ( SELECT TOP 2 G.ProductID
...
December 2, 2003 at 9:12 pm
Viewing 4 posts - 1 through 4 (of 4 total)