Viewing 15 posts - 91 through 105 (of 269 total)
Yes I can run the update for this particular field.. But I'm importing a few more tables from SQL Server to Oracle & they have lot more character fields with...
March 8, 2011 at 8:37 am
There is 15627 rows and select datalength(weight) from trlc - query returns 0 for all the rows..
March 7, 2011 at 12:35 pm
Thanks Steve. But if there is a space in the csv file, then isn't a space considered as a byte?
Record from TRLC.csv:
11032|100|Wman| | |2008-02-08| |
In the SQL Server database,...
March 7, 2011 at 11:59 am
Hi Steve,
Both 'select len(weight) from trlc' & select datalength(weight) from trlc' return 0 in SQL server..
March 7, 2011 at 11:12 am
You are right, Steve. I can see the space in text editor.. I need to import this table into Oracle database I'm using SQl Loader:
TRLC.ctl:
load data
infile 'trlc.csv'
...
March 7, 2011 at 10:02 am
Hi friends,
We have created LInked server to oracle database and have synonyms created for few Oracle tables(example - tablename@link) in the SQL database to access from the...
January 17, 2011 at 12:56 pm
Oh okay. I created the linked server as below for all the local SQL server logins:
EXEC sp_addlinkedserver
'linkserv', 'Oracle',
'ORAOLEDB.ORACLE', 'oradb'
EXECUTE sp_addlinkedsrvlogin @rmtsrvname='linkserv',
@useself='false', @rmtuser='orauser', @rmtpassword='orapwd'
Created...
January 17, 2011 at 11:27 am
We are having issues with the insert statement from the application.. Selects work fine though..
January 17, 2011 at 10:57 am
I restarted the db server and ran the select statement again.. I get a different error now
SELECT * FROM
OracleLinkedServer..ouser1.table1
OLE DB provider "ORAOLEDB.ORACLE" for linked server "Linkedservertest" returned message...
December 14, 2010 at 10:24 am
Thanks
I tried float(126) I get the below error...
Column or parameter #12: Specified column precision 126 is greater than the maximum precision of 53.
Is there an equivalent for...
December 13, 2010 at 10:35 am
Thanks Lowell.
CREATE SYNONYM dbo.citydata@ProdServer FOR MyLinkedserver.master.dbo.CITYDATA
Is 'ProdServer' linkedserver name in the example?
December 2, 2010 at 9:01 am
Can you please provide me an example of bcp export and import.. I google'd some examples but they all reference exporting single table but not the full database..
Thank you so...
October 1, 2010 at 2:29 pm
Thanks everyone.
Yes.. Our client sent a sql file with bunch of insert statements and I had to split the files to run in the query.. I thought BCP utility...
October 1, 2010 at 12:50 pm
Thanks.
We now generated a script with 'data' from SQL server 2008. I'm trying to run this script against our 2005 database, but I'm not able to copy & paste...
October 1, 2010 at 11:45 am
Viewing 15 posts - 91 through 105 (of 269 total)