Can u load same data into multiple tables using multiload? How will be the loading process? Whether it will be serially or parallely?
2 9469how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
3 49811what is the difference between look up and joiner(don't say joiner sopport only = where as look up support non-equijoin).
3 10267What is the default layout of a component ? Is it mandatory to set the layout of a component ?
3 12706for an mba (marketing) is it good to start carrer with education industry.if the profile is of assistant manager with good payback ??
2425Pgm A calls Pgm B and pgm B uses cursor, when pgm B is called second time, the program is abending saying the cursor is opened? Why?
2429suppose i have 1000 records and i want to load half of the record in target 1 and half in target2.how u'll do?
9 133371)when can you join us 2)will you accept a lower position for the time being 3)how long do you want to stay with us 4)are you a leader or a follower
2 20107Post New IBM Interview Questions
Does apache need java?
Explain a checkpoint?
what is the need of a sealed class when we are having a structure
What are the differences among a system call, a library function, and a unix command?
What distance in meters on the ground is the equivalent of one second of arc in longitude or latitude?
What are the critical attributes of a call center executive?
How many tables can a sql database have?
What is a scheduling agreement? : fi- accounts payable
Name the command to display characters to the html page?
what are some unique characteristics a magnolia has?
Why is it not necessary to configure standard jsp tags in web.xml?
Tell me what equipment is needed for voip?
Tell briefly about the Banker's algorithm and what is it used for?
Define what are the methods we have used for validations?
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing