Forum Replies Created

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

  • RE: Dimension Design Question

    I guess the simple answer is "It depends" 🙂

    Depends on what kind of system you have, what are the size of dimensions, how often they are used/queried, what's the size...

  • RE: sp_executesql

    think syntax error..

    try this

    Declare @SQLString1 NVArchar(Max),@SQLString21 NVArchar(Max),@SQLString3 NVArchar(Max) , @SQLSTring nvarchar(max)

    declare @db_name varchar(20); set @db_name = 'master';

    SET @SQLString21=' where type=''U'''

    Set @SQLString1='Select * from sysobjects'

    SET @SQLString3=@SQLString1+@SQLString21

    SET @SQLString = N'USE ' +...

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