Viewing 15 posts - 38,086 through 38,100 (of 59,072 total)
Steve Jones - Editor (6/1/2010)
There are quite a few people here with Oracle skills, including Jeff. I'm not sure Jeff wants to help with Oracle, but worth a try.
I help...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 3, 2010 at 2:16 pm
TheSQLGuru (6/2/2010)
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 9:27 pm
I agree with Gail... the precanned ones are "certified" in many cases and come with all the goodies including Luhn Mod 10 Checksums, Security, card validation on the fly, instant...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 9:24 pm
ek-822869 (6/1/2010)
I have written a script which updates one column with zeros in all the rows using whille loop which is working for the tables with small number of rows
select...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:54 am
Ion Freeman (6/1/2010)
; with EMP_CTE(EMPID, NAME) AS (SELECT EMPID, NAME FROM EMPLOYEE WHERE STARTDATE > '4/25/1968')
SELECT EMPID, NAME FROM EMP_CTE WHERE MGRID =...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:51 am
WayneS (6/1/2010)
_taz_ (6/1/2010)
yes I need to store it seperate for now.I have never done an update with a calculation. just simple
update table
set columnx=y
where columnz = null
type of stuff
thanks
First,...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:47 am
bkirk (6/1/2010)
I have...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:42 am
Very cool feedback, Nagesh. Thank you for taking the time.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:36 am
naveena 78933 (6/2/2010)
SELECT id,Name, salary FROM EmpWHERE fromdate >= '1-1-82' AND today <= '12-31-06'
Ummm... no... don't use two digit years and don't use the mm-dd-yy format for such things...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 7:30 am
daniarchitect (6/2/2010)
Jeff,FInally it works!!!!!!!!!!!!
Thanks so much,have removed the character encoding,and changed the rowdelimiter........it actually imported 98 of 144 files and I think the rest requires some data clean up.
Be blessed!
Very...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 5:20 am
Paul White NZ (6/2/2010)
j-1064772 (6/1/2010)
I missed that one. Could you please provide the URL ?Sure can:
http://www.sqlservercentral.com/Forums/Topic896583-338-1.aspx
Ohhh! That! I didn't realize he'd quoted you, Paul.
Yeah... that was pretty cool.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 5:16 am
Ummm... ok.... where's the code that does the actual work of importing?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 12:17 am
WayneS (6/1/2010)
Nagesh S-432384 (5/31/2010)
I 100% agree with you Jeff, my solution was for limited number of records not for huge data.Nag
How many times have you been told that some code...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 2, 2010 at 12:01 am
lmu92 (6/1/2010)
daniarchitect (6/1/2010)
I have been trying it the whole night yesterday and all the day today.. and it didn't work out.. (it goes well till some point and...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 1, 2010 at 6:19 pm
WayneS (6/1/2010)
Jeff Moden (5/31/2010)
WayneS (5/31/2010)
--Jeff Moden
Change is inevitable... Change for the better is not.
June 1, 2010 at 12:22 pm
Viewing 15 posts - 38,086 through 38,100 (of 59,072 total)