Viewing 8 posts - 1 through 8 (of 8 total)
dec_obrien (7/5/2011)
I'm new to SQL Server 2008. I'm trying to create a new Login in SQLEXPRESS 2008 so that I can connect to the database. I have created a new...
July 6, 2011 at 8:08 am
This works!
execute ('INSERT into INFO VALUES (1004589, 33,9887,''tekst'') ') AT rl_smd01
I had to set the linked_server RPC to true to let it work.
Thanks guys, for all the effort.
Do I...
June 29, 2011 at 1:21 am
I've also tried :
INSERT into rl_smd01.zegris__01__nloc03..INFO
VALUES (1004589, 33,9887,@tekst)
(4 part naming)
Same result...
June 29, 2011 at 1:11 am
This is the original code:
declare @tekst as nvarchar(1600)
set @tekst = 'test'
INSERT into
openquery(rl_smd01, 'select in_kr_nr, in_record_code, in_kr_key, in_tekst_tabel from info
...
June 29, 2011 at 1:00 am
The error message:
OLE DB provider "MSDASQL" for linked server "rl_smd01" returned message "[Liant][Relativity]Invalid precision value.".
Msg 7343, Level 16, State 2, Line 3
The OLE DB provider "MSDASQL" for linked server "rl_smd01"...
June 29, 2011 at 12:52 am
This is a fragment of SQL Profiler:
<DBCOLUMNINFO>
<pwszName>IN_TEKST_TABEL</pwszName>
<pTypeInfo>0x00000000</pTypeInfo>
<iOrdinal>4</iOrdinal>
<dwFlags>4</dwFlags>
<ulColumnSize>1600</ulColumnSize>
<wType>129</wType>
<bPrecision>255</bPrecision>
<bScale>255</bScale>
..
June 27, 2011 at 2:15 am
The error does not mention the column, but the other values are "normal" int's so I didn't believe it would come from that angle..
June 27, 2011 at 1:12 am
Viewing 8 posts - 1 through 8 (of 8 total)