473,385 Members | 1,357 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

dao update works on all but one record?

MP
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"

i thought that would update all records in table
it updated all but one

to read them back i used
"SELECT <fldlistFROM " & TABLE_NAME & " WHERE FLDMARK <'unassigned'
ORDER BY <fldlist>"

result:
A : 1 : 0 : 24 : 1NA : >>>>2 <<<<<< this is fldMark

it should have returned no records
so all but one were updated, if i read them all they are correct except for
this one

is there a way to know a record was skipped during an update on all records?
a way to get error codes during an update?

any thoughts on how this would occur?

thanks
Mark
Oct 27 '06 #1
24 2422
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"

i thought that would update all records in table
it updated all but one

to read them back i used
"SELECT <fldlistFROM " & TABLE_NAME & " WHERE FLDMARK <>
'unassigned' ORDER BY <fldlist>"

result:
A : 1 : 0 : 24 : 1NA : >>>>2 <<<<<< this is fldMark

it should have returned no records
so all but one were updated, if i read them all they are correct
except for this one

is there a way to know a record was skipped during an update on all
records? a way to get error codes during an update?

any thoughts on how this would occur?

thanks
Mark
Without testing I would conjecture that this would occur if there exists on
the table a unique compound(multi-field) index which includes fldMark and
updating that particular record would have resulted in a non-unique
combination of values for the fields involved.

--
Lyle Fairfield
Oct 27 '06 #2
MP wrote:
any thoughts on how this would occur?

It won't update if that record is locked at the time of the update or if a
constraint is violated. And it might have been updated with "unassigned" but
was changed to "2" by another process before your readback code executed.
is there a way to know a record was skipped during an update on all records?
a way to get error codes during an update?
You should use error handling to tell you when the code fails so you'll know
why something failed. The syntax to call the error handler when the update
query fails (and then rolls back the transaction) is this:

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'",
dbFailOnError

You can also check the database object's RecordsAffected property to show a
count of how many records were updated.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200610/1

Oct 27 '06 #3
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"

i thought that would update all records in table
it updated all but one

to read them back i used
"SELECT <fldlistFROM " & TABLE_NAME & " WHERE FLDMARK <>
'unassigned' ORDER BY <fldlist>"

result:
A : 1 : 0 : 24 : 1NA : >>>>2 <<<<<< this is fldMark

it should have returned no records
so all but one were updated, if i read them all they are correct
except for this one

is there a way to know a record was skipped during an update on all
records? a way to get error codes during an update?

any thoughts on how this would occur?

thanks
Mark
Did DAO pop up an error dialog? Perhaps there are option parameters such
dbFailOnError that you can include which will result in that happening. (If
you're not in Access you might have to use a literal, &H80, for
dbFailOnError, I'm not sure.)

Did you try it in ADO? Did ADO pop up an error dialog?

--
Lyle Fairfield
Oct 27 '06 #4
MP

"Granny Spitz via AccessMonster.com" <u26473@uwewrote in message
news:68652b170d071@uwe...
MP wrote:
any thoughts on how this would occur?


It won't update if that record is locked at the time of the update or if a
constraint is violated. And it might have been updated with "unassigned"
but
was changed to "2" by another process before your readback code executed.
is there a way to know a record was skipped during an update on all
records?
a way to get error codes during an update?

You should use error handling to tell you when the code fails so you'll
know
why something failed. The syntax to call the error handler when the
update
query fails (and then rolls back the transaction) is this:

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'",
dbFailOnError

You can also check the database object's RecordsAffected property to show
a
count of how many records were updated.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200610/1
Thanks I'll look into that
Oct 27 '06 #5
MP

"Lyle Fairfield" <ly***********@aim.comwrote in message
news:Xn*********************************@216.221.8 1.119...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
Did DAO pop up an error dialog?
no

Perhaps there are option parameters such
dbFailOnError that you can include which will result in that happening.
I'll try that
Did you try it in ADO? Did ADO pop up an error dialog?
will try that next

thanks
Oct 27 '06 #6
MP

"MP" <No****@Thanks.comwrote in message
news:45***********************@news.nationwide.net ...
>
"Lyle Fairfield" <ly***********@aim.comwrote in message
news:Xn*********************************@216.221.8 1.119...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
Did DAO pop up an error dialog?
no

Perhaps there are option parameters such
dbFailOnError that you can include which will result in that happening.

I'll try that
Did you try it in ADO? Did ADO pop up an error dialog?

will try that next

thanks

this is so weird
both dao and ado leave the same record untouched
neither throw errors
dao.RecordsAffected shows 37 of 38 are set

i'm sure nothing is running after this test that resets the value
very strange
is there a way to test a row of a recordset to see if it's somehow magically
locked, in the middle of an update?

Oct 27 '06 #7
MP

"MP" <No****@Thanks.comwrote in message
news:45***********************@news.nationwide.net ...

can an mdb become corrupted after many debug runs such that a field becomes
inoperable?
ado produces no error and still leaves the field untouched

log report:
attempt sql: Update tblTypeCond Set fldMark = 'testado'
Execute - no error
A : 1 : 0 : 8 : testado
A : 1 : 0 : 8 : testado
A : 1 : 0 : 12 : testado
A : 1 : 0 : 12 : testado
A : 1 : 0 : 18 : testado
A : 1 : 0 : 18 : testado
A : 1 : 0 : 18 : testado
A : 1 : 0 : 18 : testado
A : 1 : 0 : 24 : 2
A : 1 : 0 : 24 : testado
A : 1 : 0 : 24 : testado
....etc remaining records
Oct 27 '06 #8
MP wrote:
this is so weird
both dao and ado leave the same record untouched
neither throw errors
dao.RecordsAffected shows 37 of 38 are set
I'll take a look at it if you want. Let me know and I'll give my email
address (properly disguised of course). Create a new database, import the
table into it and zip the file.
is there a way to test a row of a recordset to see if it's somehow magically
locked, in the middle of an update?
I don't think you can with a desktop database, only a client/server database.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200610/1

Oct 27 '06 #9
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"
Always do

db.Execute strSQL, dbFailOnError

and then have an error handler for it.

Also, you can check the .RecordsAffected property of the db
variable, and then compare that to the number of records in the
actual table to be sure that all of them have been updated.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Oct 27 '06 #10
MP wrote:
can an mdb become corrupted after many debug runs such that a field becomes
inoperable?
An mdb can become corrupted, but it's from being interrupted during a write
to file operation. That can happen when a user hits the power switch, the
network connection drops, etc.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200610/1

Oct 27 '06 #11
MP

"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@127.0.0. 1...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"

Always do

db.Execute strSQL, dbFailOnError

and then have an error handler for it.

Also, you can check the .RecordsAffected property of the db
variable, and then compare that to the number of records in the
actual table to be sure that all of them have been updated.
That's what i've done
no errors
no update (one record only - out of 38 total)

fwiw the properties of the one field...in case that shows anything strange
about that field (i have no idea if it does or not)

fldMark Props0: Value Value: 2
fldMark Props1: Attributes Value: 34
fldMark Props2: CollatingOrder Value: 1033
fldMark Props3: Type Value: 10
fldMark Props4: Name Value: fldMark
fldMark Props5: OrdinalPosition Value: 4
fldMark Props6: Size Value: 255
fldMark Props7: SourceField Value: fldMark
fldMark Props8: SourceTable Value: tblTypeCond
fldMark Props9: ValidateOnSet Value: False
fldMark Props10: DataUpdatable Value: True
fldMark Props11: ForeignName Value: can't retrieve
fldMark Props12: DefaultValue Value:
fldMark Props13: ValidationRule Value:
fldMark Props14: ValidationText Value:
fldMark Props15: Required Value: False
fldMark Props16: AllowZeroLength Value: False
fldMark Props17: FieldSize Value: can't retrieve
fldMark Props18: OriginalValue Value: can't retrieve
fldMark Props19: VisibleValue Value: can't retrieve

got the one problem field and properties thus
(just hard coded the '2' in there cause that 's the one that's "bad"

sSqlRead = "Select fldTypeName, fldCondName, fldCondVar, fldLength, fldMark
From " & TABLE_NAME & " WHERE FldMark = '2' order by fldTypeName,
fldCondName, fldCondVar, fldLength, fldMark "
Set oRs = db.OpenRecordset(sSqlRead)
If Not oRs Is Nothing Then
oRs.MoveFirst
While Not oRs.EOF
For Each oFld In oRs.Fields
For i = 0 To oFld.Properties.Count - 1
sRpt = sRpt & oFld.Name & " Props" & i & ": " &
oFld.Properties(i).Name

'temporarily override normal error handler in routine(normally don't use
resume next!!!)
On Error Resume Next
sRpt = sRpt & vbTab & "Value: <" &
CStr(oFld.Properties(i).Value) & ">" & vbCrLf
If Err Then
sRpt = sRpt & vbTab & "Value: can't retrieve" &
vbCrLf
End If

'reset error handler
On Error GoTo 0
Next i
sRpt = sRpt & "Next fld"
Next oFld
oRs.MoveNext
Wend
Oct 27 '06 #12
MP

"Granny Spitz via AccessMonster.com" <u26473@uwewrote in message
news:68675ee00b647@uwe...
MP wrote:
>
I'll take a look at it if you want. Let me know and I'll give my email
address (properly disguised of course). Create a new database, import the
table into it and zip the file.

many thanks for the offer, but this is just a test db, not worth spending
much time on.

just wondering if there was a well known reason a field would get weird.

I tried dao repair but got error operation not supported
got this from msdn
DBEngine.RepairDatabase DATABASE_NAME

but there's no .RepairDatabase method on the object in objectbrowser

so i tried .CompactDatabase and that worked.

now I only have 37 fields so somehow that one field got messed up and is now
gone

i've been testing against this one for several days now so it may just be
'worn out'

:-)

now both ado and dao updates work....

Thanks again for your offer of looking at it, i really appreciate that
Mark
Oct 27 '06 #13
MP

"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@127.0.0. 1...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
vb6, dao, mdb, win2k (no access)

db.Execute "Update " & TABLE_NAME & " Set fldMark = 'unassigned'"

Always do

db.Execute strSQL, dbFailOnError

and then have an error handler for it.

Also, you can check the .RecordsAffected property of the db
variable, and then compare that to the number of records in the
actual table to be sure that all of them have been updated.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
yahoo
..CompactDatabase got rid of the pesky no update field...wonder what had
happened to it?

just over use from all my errant test code no doubt
:-)
Oct 27 '06 #14
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
I tried dao repair but got error operation not supported
got this from msdn
DBEngine.RepairDatabase DATABASE_NAME

but there's no .RepairDatabase method on the object in
objectbrowser

so i tried .CompactDatabase and that worked
The Repair is never necessary by itself. That is there for backwards
compatibility, as repair and compact used to be separate operations,
but in Jet 3.5, it was discovered that a repair to an uncorrupted
MDB could damage it, so in Jet 3.5 SP2, Repair was neutered and
folded into the Compact process. Now, a compact first checks if
there's anything that needs to be repaired, and if so, it repairs
before the compact. If nothing is wrong, the repair is skipped and
it just compacts.

If it's Jet 4 data, you should have an MSysCompactErrors table that
should tell you what was wrong.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Oct 27 '06 #15
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
.CompactDatabase got rid of the pesky no update field...wonder
what had happened to it?

just over use from all my errant test code no doubt
Are there memo fields?

Are you using a good version of Jet? Make sure the version is at
least 4.0.6xxx. If the build is lower than that, you need to
download the latest Jet service pack. Earlier versions had problems
with corrupted indexes, which is very consistent with the kind of
error you were getting.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Oct 27 '06 #16
MP wrote:
just wondering if there was a well known reason a field would get weird.
Corruption or an old Jet 4.0 service pack. There were 8 of them because
there were problems with the first 7.
but there's no .RepairDatabase method on the object in objectbrowser

so i tried .CompactDatabase and that worked.
Yes, there's no separate repair operation in more recent versions of Access.
But the /repair commandline switch will compact the database, including the
MSysAccessObjects in Access 2002.
Thanks again for your offer of looking at it, i really appreciate that
You're welcome. Glad everything's back to normal.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200610/1

Oct 28 '06 #17
MP wrote:
many thanks for the offer, but this is just a test db, not worth spending
much time on.
just wondering if there was a well known reason a field would get weird.
Arggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhh!

Oct 28 '06 #18
"Lyle Fairfield" wrote
MP wrote:
>many thanks for the offer, but this is just
a test db, not worth spending much time on.
>just wondering if there was a well known
reason a field would get weird.

Arggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhh!
Well, now that you mention it, some Fields "get wierd" when they hear
"Arggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhh! " in either a Texas or
Canadian accent.

(Note: this is a little-known, undocumented feature, so you won't find it in
Help or the literature.)

<GRINNIN', DUCKIN', & RUNNIN'>

Larry
Oct 30 '06 #19
MP

"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@127.0.0. 1...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
.CompactDatabase got rid of the pesky no update field...wonder
what had happened to it?

just over use from all my errant test code no doubt

Are there memo fields?

Are you using a good version of Jet? Make sure the version is at
least 4.0.6xxx. If the build is lower than that, you need to
download the latest Jet service pack. Earlier versions had problems
with corrupted indexes, which is very consistent with the kind of
error you were getting.
checking google for how to find version of jet it seems i need to write some
api stuff to get that info?
is that correct or is there a way to get that from dao?

since the previous post it's happened again, and compacting, while fixing
the 'problem' for the moment also deletes one record
so it's ok for my debugging process but i need to find an actual fix before
using this app in production.

Thanks
Mark
Oct 30 '06 #20
MP
"MP" <no****@Thanks.comwrote in message
news:f4******************@tornado.rdc-kc.rr.com...
>
"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@127.0.0. 1...
"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.net :
.CompactDatabase got rid of the pesky no update field...wonder
what had happened to it?
>
just over use from all my errant test code no doubt
Are there memo fields?

Are you using a good version of Jet? Make sure the version is at
least 4.0.6xxx. If the build is lower than that, you need to
download the latest Jet service pack. Earlier versions had problems
with corrupted indexes, which is very consistent with the kind of
error you were getting.

checking google for how to find version of jet it seems i need to write
some
api stuff to get that info?
is that correct or is there a way to get that from dao?

since the previous post it's happened again, and compacting, while fixing
the 'problem' for the moment also deletes one record
so it's ok for my debugging process but i need to find an actual fix
before
using this app in production.

Thanks
Mark
after more googling i just looked at msjet40.dll in windows explorer
properties shows version to be
4.00.9025.0
so i guess i'm ok on that
which is bad cause it means i have some other unknown problem
:-)
Oct 30 '06 #21
"MP" <no****@Thanks.comwrote in
news:rh*****************@tornado.rdc-kc.rr.com:
which is bad cause it means i have some other unknown problem
I think not. Verbosity is quite a well-known problem.

--
Lyle Fairfield

from http://msdn.microsoft.com/library/de...l=/library/en-
us/dnmdac/html/data_mdacroadmap.asp

Obsolete Data Access Technologies
Obsolete technologies are technologies that have not been enhanced or
updated in several product releases and that will be excluded from future
product releases. Do not use these technologies when you write new
applications. When you modify existing applications that are written using
these technologies, consider migrating those applications to ADO.NET.
The following components are considered obsolete:
....
Data Access Objects (DAO): DAO provides access to JET (Access) databases.
This API can be used from Microsoft Visual Basic®, Microsoft Visual C++®,
and scripting languages. It was included with Microsoft Office 2000 and
Office XP. DAO 3.6 is the final version of this technology. It will not be
available on the 64-bit Windows operating system.
.....
Oct 30 '06 #22
MP

"Lyle Fairfield" <ly***********@aim.comwrote in message
news:Xn*********************************@216.221.8 1.119...
"MP" <no****@Thanks.comwrote in
news:rh*****************@tornado.rdc-kc.rr.com:
which is bad cause it means i have some other unknown problem

I think not. Verbosity is quite a well-known problem.

--
Lyle Fairfield
No, i meant in *addition* to *that* one!
:-)
Oct 30 '06 #23
MP
"Lyle Fairfield" <ly***********@aim.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
MP wrote:
many thanks for the offer, but this is just a test db, not worth
spending
much time on.
just wondering if there was a well known reason a field would get weird.

Arggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhh!

well, being new to this forum I'm not sure what that means?

in the context of someone offering to look at the specific problem .mdb file
i responded
<< not worth spending much time on.

don't know if you took that to mean the problem itself was not worth the
time?
what I mean is that the mdb file is created on the fly reading values from
an external program
any given mdb file is thus "temporary" in nature...being used to do some
calculations.
The mdb file itself is not too important...the process i need to solve *Is*
important.

but maybe I'm misinterpreting "
Arggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhh!"
:-)


Oct 30 '06 #24
"MP" <no****@Thanks.comwrote in
news:f4******************@tornado.rdc-kc.rr.com:
>
"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@127.0.0. 1...
>"MP" <No****@Thanks.comwrote in
news:45***********************@news.nationwide.ne t:
.CompactDatabase got rid of the pesky no update field...wonder
what had happened to it?

just over use from all my errant test code no doubt

Are there memo fields?

Are you using a good version of Jet? Make sure the version is at
least 4.0.6xxx. If the build is lower than that, you need to
download the latest Jet service pack. Earlier versions had
problems with corrupted indexes, which is very consistent with
the kind of error you were getting.

checking google for how to find version of jet it seems i need to
write some api stuff to get that info?
I right click the file in Windows Explorer and check the version
tab.
is that correct or is there a way to get that from dao?

since the previous post it's happened again, and compacting, while
fixing the 'problem' for the moment also deletes one record
so it's ok for my debugging process but i need to find an actual
fix before using this app in production.
I use code to detect and log Jet version in my Access apps, because
at one time it was easy for machines to revert to bad versions. But
since the Windows Updates for Win2K and WinXP got past Jet SP6
(because Jet 4 is an OS component used by Active Directory for its
data store), this hasn't been as much of a problem.

I don't know what happens if you try to install an old version of
Jet on one of the later service packs of Win2K or WinXP. I'd think
that it wouldn't allow it, but you'd want to check (it's in the
SYSTEM32 folder under Windows, msjet40.dll).

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Oct 30 '06 #25

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Bob M | last post by:
Hi all, I am trying to update a record with a function value. Here is the function: update ITSM_SER_CUSTOM_FIELDS set SCF_SCDATE2 = SLA_PENDING_DATE.GET_DL(2292,'servicecall') where...
3
by: Mihaly | last post by:
I want to update a record into a table in SQL Server 2000 database from C#. This table is used concurently for other users too, and I want to be sure that from the read of record to the update no...
5
by: Hennie | last post by:
When trying to update a record in an editable datagrid I ran into a few problems. My update procedure is just not working. Can someone please have a look at my code and see what am I doing wrong....
4
by: ad | last post by:
I found an example in Starter kit. Is it so tedious to update a record. ---------------------------------------------------------------------------- ------------- SqlConnection myConnection...
5
by: pisquem | last post by:
I have a web applicaiton that has a form that is used to update a record from a sql table. This page will load with a value being retrieved from a querystring. The value is from the querystring...
2
by: lmnorms1 | last post by:
Hello, I am looking to update a record that was read in with OleDbDataReader. I have the record in reader but now with the reader connection open; how do I update it. Any advice would be...
11
by: stantron | last post by:
Setup: I only have one database with one table in it. The first page has a form that adds a record (w/ 6 fields in it) to the mySQL database's lone table via PHP. This works fine. I also have a PHP...
2
by: Mel | last post by:
Can anyone assist me in how I would structure this code to update every record in a table? I need to loop through each record and increase the cost field by a certain percentage. How do I loop...
28
TheSmileyCoder
by: TheSmileyCoder | last post by:
I need to update a record in a table if the record allready exists, but if it does not exist, I need to insert the record. Is there a 1-step SQL way of doing this? I can easily perform the 2...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.