Forum Replies Created

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

  • RE: Dynamic SQL and referencing a temp table

    Thanks for the reply. By using a temp table I have solved the problem.

    But whats the difference between Declare & Create :

    DECLARE @NewTable TABLE (...) AND

    create table #temp(...)

    'Create Table...' in...

  • RE: Row size limits

    I have designed my table using :

    ShortDescription Nvarchar (1000)

    LongDescription Nvarchar (3000)

    I can change my table structure if YOU gurantee that I will not get into size restrictions

  • RE: Searching for all the words

    Thanks Kenneth

    I have copied the code as you provided it, and yes it works.

    I will be adopting the code to my Tables

    Just another question:

    How does replacing a space with %, make it...

  • RE: Searching for all the words

    Kenneth, I just tried it, but I get errors:

    Incorrect syntax near the keyword 'LIKE'.

  • RE: Searching for all the words

    Thanks KH

    But the problem is that I will not know how many keywords there will be. A user may enter 'monitors' or 'monitors sensors' or 'monitors sensors LCD'

    So I would...

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