Forum Replies Created

Viewing 15 posts - 3,301 through 3,315 (of 3,366 total)

  • RE: Full Text Search Using Soundex()

    I am sorry I was off by a year 1998 and I did not say the other RDBMS(relational database management system ) vendors cannot implement CONTAINS but I know as...

    Kind regards,
    Gift Peddie

  • RE: Full Text Search Using Soundex()

    I was not clear but CONTAINS as implemented in Microsoft FULL TEXT is proprietry.  And combing it with SOUNDEX string function is redundant because some version of CONTAINS gives the...

    Kind regards,
    Gift Peddie

  • RE: Full Text Search Using Soundex()

    CONTAINS is Microsoft proprietry so I don't think you can use SOUNDEX with it.  The code below may be what you can do with word sound.  Run a search for...

    Kind regards,
    Gift Peddie

  • RE: Uniqueidentifier vs int

    A GUID is not just 16bytes but binary data type that should be avoided if you can do so because a GUID will break your index and create problems while...

    Kind regards,
    Gift Peddie

  • RE: OPENXML and image data type problem

    Try the link below for sample code using OPENXML.  Hope this helps.

    http://msdn.microsoft.com/msdnmag/issues/05/06/DataPoints/default.aspx

    Kind regards,

    Gift Peddie

    Kind regards,
    Gift Peddie

  • RE: How - Multiple languages

    Try the links below for all you need to do localization in Asp.net and SQL Server including Unicode encoding your tables and in Visual Studio 2003.  You can do column...

    Kind regards,
    Gift Peddie

  • RE: Transaction Log dump

    To free up space you run DBCC Shrinkfile with Trunacte option, SQL Server will return space less space it marks as active log.  Run a search for DBCC Shrinkfile in...

    Kind regards,
    Gift Peddie

  • RE: Ignored words in SQL

    Ignored words could be just part of the problem because FULLTEXT is Microsoft Proprietry feature you have to use FREETEXT, FREETEXTTABLE, CONTAINS and CONTAINSTABLE without functions like COALESCE.  I would...

    Kind regards,
    Gift Peddie

  • RE: Need to refresh data from MSDE 1.0 db to MSSQL2000 db

    You could just register it and manage it but the best is to backup and restore in your SQL Server 2000 which lets you check the results before taking any...

    Kind regards,
    Gift Peddie

  • RE: Decimal/Float precision

    You use Float to do the calculation because most T-SQL quantitative functions are in Float but you cast the results to Decimal or Number where you can set precision and...

    Kind regards,
    Gift Peddie

  • RE: Rounding Time intervals

    Try this link for a solution using DATEDIFF with time span.  Hope this helps.

    http://www.stanford.edu/~bsuter/sql-datecomputations.html

    Kind regards,

    Gift Peddie

    Kind regards,
    Gift Peddie

  • RE: Why does this work in SQL Server?

    Cast or Convert could be an issue but the main reason there is no INT datatype in Oracle, it uses NUMBER for all numeric data types including DOULBE that is not...

    Kind regards,
    Gift Peddie

  • RE: Can you use a 6.5 bk on a SQL 2000 directly

    SQL Server 6.5 to SQL Server 2000 can be complicated because I can write 200 pages and I have not finished with the difference in both systems.  I would use...

    Kind regards,
    Gift Peddie

  • RE: Passing date value from vb.net to stored procedure

    The VB .NET have millisecond in the FCL(framework class library) 1.1 Calendar class.  When you get less than complete datetime in SQL Server make sure you are not using Small...

    Kind regards,
    Gift Peddie

  • RE: UNION ALL VIEW PROBLEM FOR INSERT

    Joe Celko will answer this better than I can because he explains it short and simple in SQL for Smarties why you are getting this error.  Now to your solution run...

    Kind regards,
    Gift Peddie

Viewing 15 posts - 3,301 through 3,315 (of 3,366 total)