Viewing 8 posts - 1 through 9 (of 9 total)
Thank you, the lack of explicit conversation does seem to be the isssue.
I cannot use cast as the casting would have to be done on the Oracle side which...
March 31, 2010 at 10:01 am
The seems to be related to the way Oracle and SQLServer interact. If I query MyTable from Oracle I can see the column Id, so it is to do with...
March 3, 2010 at 10:53 am
Thanks Pablo, the development team on the SQL Server side didn't like this suggestion when I made it, but we've got round the problem by changing the column type. I...
February 18, 2010 at 3:10 am
I've also tried this with a second table with Id of type Bigint not null and everything works fine...It's definitely because it set to uniqueidentifier.
:ermm:
February 16, 2010 at 8:00 am
Changing the properties in SQLServer to default value of newid() and then removing "Id" from the Oracle procedure then compiles and suceeds, so pretty sure it is because it is...
February 16, 2010 at 7:40 am
I wish it was that simple. It's related to "Id" being set as a uniqueidentifier.
February 16, 2010 at 5:50 am
I mocked up the previous examples, here is the real thing....
USE [FirstClassUpgrades]
GO
/****** Object: Table [dbo].[MyTable] Script Date: 02/16/2010 12:37:19 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE...
February 16, 2010 at 5:38 am
Viewing 8 posts - 1 through 9 (of 9 total)