Forum Replies Created

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

  • Reply To: sp_who4

    Just edit the statement to use NULLIF for the cases when there are no blocks:

    SELECT @SqlStatement = '

    UPDATE lo

    SET lo.wait_obct = obct.obct_name

    FROM #res lo JOIN (

    ' + NULLIF(@SqlStatement,'') + '

    )...

  • RE: Pass table type param to stored proc in another database

    This was so long ago that I'd forgotten. It's been answered elsewhere but here's the gist of the explanation: user defined data types and table tables are CLR objects(compiled code)...

  • RE: Pass table type param to stored proc in another database

    I'm having the same problem.

    I'm trying to use a table-valued parameter between two databases. I created the table type in both dbs (here called CallingDB and OtherDB) and they...

  • RE: Upgrading from SQL 2005 Developer Edition

    Elisabeth and Jerry,

    Thanks for the reply. I'm trying to do an upgrade.

    I'm trying to install version 10.00.1600.22 "Microsoft® SQL Server® 2008 Enterprise Evaluation: Trial Experience for Developers". Trying to upgrade...

  • RE: Connect to a Remote SSAS 2005 Database

    Jacob, thanks very much for the post!

    I killed many hours searching the MS sites, blogs, forums, etc and was up and working minutes after reading your post.

  • RE: Ldp.exe Utility

    where'd you find it?

  • RE: Sound Matching and a Phonetic Toolkit

    Mike,

    Thanks for this tool, it's quite useful. It appears that the 'PH' replacement portion needs a fix too.

    -- this part works (it makes a 'P' into an 'F')

       } else if...

  • RE: serious problem

    Your problem is in the string you're creating - it's trying to implicitly convert a numeric to nvarchar (I assume that's what your using for the variable @SQLViUp).

    Try casting the numeric...

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