Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Question of the Day for 13 Sep 2004

    I think this line from SQL Server HELP provides answer. It was a suprise to me. It seems that nvarchar(20) is a different type than nvarchar(26). Interesting at the least....

  • RE: Table as parameter

    Try to use dynamic sql for this. For example create such a stored procedure

    CREATE PROCEDURE rp_Table

    @TableName nvarchar(100)

    AS

    DECLARE @sql nvarchar(4000)

    SET @sql = 'SELECT * FROM ' + @TableName

    -- print @sql

    EXEC sp_executesql ...

  • RE: Reporting Services & MSDE

    It is not possible to use Reporting Services with MSDE.

Viewing 3 posts - 1 through 3 (of 3 total)