Viewing 7 posts - 1 through 7 (of 7 total)
If I concatenate the varchar columns into a single column, I will (almost) duplicate the table size. That don’t look so good either and I don't like this idea very...
November 7, 2020 at 9:00 am
The purpose of including all columns in the FullText catalog, is the ability to search directly in all columns and, find all the records of the table that in at...
November 6, 2020 at 2:36 pm
Here is the table:
CREATE TABLE [dbo].[ENTIDADE](
[COD_ENTD_ID] [decimal](18, 0) IDENTITY(0,1) NOT NULL,
[COD_ENTD] [varchar](20) NULL,
[COD_TIPO_ENTD_ID] [decimal](18, 0) NOT NULL,
[DES_SIGL] [varchar](100) NOT NULL,
[DES_DESG_SOCL] [varchar](100) NULL,
[DES_MORD] [varchar](100) NULL,
[DES_LOCL] [varchar](100) NULL,
[DES_CODG_POST] [varchar](50)...
November 5, 2020 at 4:39 pm
Why does your code setup full text catalogues on EVERY VARCHAR column in the table? Is that really necessary? Depending on the schema of your table, that could be...
November 5, 2020 at 1:24 pm
Someone know a unmanaged C++ version of this code?
Thanks
February 23, 2012 at 11:59 am
Gift Peddie (8/19/2009)
August 19, 2009 at 12:51 pm
Gift Peddie (8/19/2009)
August 19, 2009 at 11:46 am
Viewing 7 posts - 1 through 7 (of 7 total)