-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I write a small own replication - a trigger which fires an DTC INSERT to another server (one reason for my own "replication": while trigger is running it calculates some data, another: it works from an express version to an express version).
When I do the initial insert from the same Host…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am working on MSSQL2008. My task is to investigate the issue that why FTS cannot find the right result for Thai.
First, I am having the table which enable the FTS on the column 'ItemName' which is nvarchar. The Catalog is created with the Thai Language. Note that, Thai language is one of the language…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am using django-mssql and SQL Server 2008, but I found that it always errors when I do some
commands,for example:
python manage.py syncdb
the error is below:
raise OperationalError(e, "Error opening connection: " + connection_string)
ngo.db.backends.sqlserver_ado.dbapi.OperationalError:
(com_error(-2147352567…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am working with MSSQL2008. My task is to investigate the issue where FTS cannot find the right result for Thai.
First, I have the table which enables the FTS on the column 'ItemName' which is nvarchar. The Catalog is created with the Thai Language. Note that the Thai language is one of the languages…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have two tables:
create table [dbo].[Main]
(
[ID] [int] identity(1,1) primary key not null,
[Sign] [char](1) not null
)
create table [dbo].[Names]
(
[ID_Main][int] primary key not null,
[Name][nvarchar](128) not null,
constraint [FK_Main_Users] foreign key ([ID_Main])…
>>> More