Viewing 11 posts - 1 through 11 (of 11 total)
Initially i didn know that sqlldr.exe will be present in the bin folder of the Oracle client:)
Now am able to import files using sqlldr in the windows command prompt..
June 12, 2008 at 3:19 am
Yep...got it!
But my other concern was i checked for duplicate values in the file containing the names(using a java program)....but could not find any...
Anyway, i found the culprit:
The java program...
June 11, 2008 at 11:02 pm
I imported a text file having 250,000 unique names(text has 250000 lines..ie.1 name per line) to a table MYTABLE(with 1 column..NAME) in sql server. The names include values like Ada,AAda,Adae
Could...
June 11, 2008 at 8:08 am
Christopher Stobbs (6/11/2008)
hi,This is a basic query:
SELECT *
FROM MyTable
WHERE ID IN
(SELECT ID
FROM MyTable
GROUP BY ID
HAVING COUNT(*) >1)
Chris,
I imported a text file having 250,000 unique names(text has 250000 lines..ie.1 name...
June 11, 2008 at 7:54 am
Thanks pal! This served the prupose:)
May 30, 2008 at 3:01 am
Hi,
Does using CROSS JOIN affect performance when there more than 100 hundred records in the table?
Or is there any workaround for this ..like indexing or temporary tables?
May 29, 2008 at 6:56 am
Hi,
i got this resolved. The problem was due to an invalid statement in the stored procedure...the error did not appear when the stored procedure was compiled..but when called from a...
May 27, 2008 at 3:25 am
Thanks Jeff...that code snippet did work...:)
But when my tableA had 6 distinct records and tableB had 7 distinct records...i find that only three values from column2 of tableB were...
May 27, 2008 at 12:41 am
I have tried the below query too but get an error message saying that the select query returns more than one result
update dbo.tableA set column1=(select column2 from dbo.tableB where (abs(cast((BINARY_CHECKSUM(column2,NEWID()))...
May 26, 2008 at 5:41 am
There need not be a relation between tableA and tableB. Its just that i dont require the values in tableA. The aim is to do a substitution....
The select query in...
May 21, 2008 at 10:59 pm
Thanks all....The solution really helped in time.
May 6, 2008 at 11:15 pm
Viewing 11 posts - 1 through 11 (of 11 total)