Viewing 15 posts - 2,956 through 2,970 (of 3,738 total)
I don't know how much data you already have in your database but you could add an Unspecified for the records that do not have a country but have a...
May 21, 2011 at 5:24 pm
Tiya (5/21/2011)
is there no way to do alter???....is is bug in sql server?"
No as was stated you can't alter an existing column to make it an identity column but you...
May 21, 2011 at 11:15 am
Please refer to the following - FYI:
May 21, 2011 at 11:10 am
It has been a long time but I implemented an International Trade Database.
It had a Codes for the Continent, Sub Continent and Country with Lookup Tables for each.
May 21, 2011 at 11:00 am
I prefer the Oracle Driver over the Microsoft Client Driver.
What is installed on the machine in which it is created?
For instruction on installing the Microsoft OLE DB Provider for...
May 21, 2011 at 10:45 am
bryan72florida (5/21/2011)
is there any way I can get the MSORA driver ?
I forgot to ask you what version of Oracle you are using?
I noticed this old article about this...
May 21, 2011 at 8:58 am
Sounds like you are missing the MSORA Driver that the connection is using.
May 21, 2011 at 8:28 am
I just recalled having a similar problem and it turned out to be the NIC Card was configured to Auto.
I changed it to Full Duplex and that resolved the problem.
May 21, 2011 at 8:23 am
sandeep1188 (5/20/2011)
I HAVE TO DELETE FEW RECORDS FROM A TABLE BASED ON SOME CONDITIONS AND INSERT THE SAME DELETED RECORDS INTO A TEMP TABLE.Please help me in this.
I would insert...
May 20, 2011 at 6:23 pm
Perhaps I was not clear on what you need to do but you need to create a script to load your test data into the table that you defined.
May 20, 2011 at 2:36 pm
prashantcomp90 (5/20/2011)
GO
/****** Object: Table [dbo].[ledger] Script Date: 05/21/2011 01:41:25 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[ledger](
[vec] [numeric](25, 0) IDENTITY(1,1) NOT NULL,
[id] [varchar](20) COLLATE...
May 20, 2011 at 2:21 pm
prashantcomp90 (5/20/2011)
do u mean the table details like feilds name in the table. that was i have posted yesterday.what is DDL i realy dont know.
In SSMS, select the table, right...
May 20, 2011 at 1:58 pm
Michael Valentine Jones (5/20/2011)
Welsh Corgi (5/20/2011)
Michael Valentine Jones (5/20/2011)
Welsh Corgi (5/20/2011)
May 20, 2011 at 1:50 pm
Viewing 15 posts - 2,956 through 2,970 (of 3,738 total)