Viewing 15 posts - 3,301 through 3,315 (of 3,366 total)
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...
September 6, 2005 at 11:41 am
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...
September 6, 2005 at 1:58 am
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...
September 6, 2005 at 12:59 am
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...
September 6, 2005 at 12:48 am
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
September 5, 2005 at 4:36 pm
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...
September 3, 2005 at 10:55 pm
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...
September 1, 2005 at 3:31 pm
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...
September 1, 2005 at 11:52 am
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...
September 1, 2005 at 11:17 am
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...
September 1, 2005 at 10:22 am
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
August 31, 2005 at 2:16 pm
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...
August 31, 2005 at 1:21 pm
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...
August 31, 2005 at 1:08 pm
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...
August 30, 2005 at 11:39 pm
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...
August 30, 2005 at 1:49 am
Viewing 15 posts - 3,301 through 3,315 (of 3,366 total)