What preparations are usually necessary to enter the Oracle field? I
would like to know.
Thanks in advance.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Thanks in advance.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Quote:> A degree in Coputer Information Systems would be a good start. Then a few
> Oracle classes and pass your certification exams. That'll keep you busy
for a
> few years :-)
Sir, I am not familiar with DBA field, and I don't really understandQuote:> If you're thinking of doing DBA work, you'll probably want full body
armor
> and a helmet as well.
Thank you in advance.
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
Being a DBA is like being the designated scapegoat. When
things are going well the DBA doesn't appear to do much (other
than collect what the non-DBAs consider to be an outrageous
FAULT!!!!!.
Doesn't matter if the problem was caused by the server power
fluctuating like a yo-yo or the developers deleted all of the
transaction tables, or the system administrator unilaterally
decided to move all of the disk files to different directories,
or operations didn't follow the written procedures for the backup
FAULT!!!!!.
So, if you want to be a dba you should take some courses in
martial arts, buy body armor, and hang autographed photos of the
FBIs Ten Most Wanted on your cubicle wall. All this in addition
to becoming expert in Oracle.
regards
Jerry Gitomer
>Sir, I am not familiar with DBA field, and I don't really
understand
>what you mean by full body armor and a helmet; can you explain
what
>that is?
>Thank you in advance.
>Sent via Deja.com http://www.deja.com/
>Share what you know. Learn what you don't.
> If you're thinking of doing DBA work, you'll probably want full body armor
> and a helmet as well.
> > A degree in Coputer Information Systems would be a good start. Then a few
> > Oracle classes and pass your certification exams. That'll keep you busy
> for a
> > few years :-)
Dan
> > If you're thinking of doing DBA work, you'll probably want full body
armor
> > and a helmet as well.
> > > A degree in Coputer Information Systems would be a good start. Then a
few
> > > Oracle classes and pass your certification exams. That'll keep you
busy
> > for a
> > > few years :-)
1. VB3 appending a field to a table, then entering data into the new field
'**** I create a database to store measurements with the createdatabase command.
'**** I need a fixed number of tables which i have created.
'**** I then need to add new fields to a specific table.
'**** The number of fields will vary from table to table.
'**** Basically, the database is a simple (not relational) database with
'**** rows (records) and columns (fields).
'**** The database is used to store data from and supply data to a grid.
'**** The sub i have written allows me to append the new field to the table chosen
Dim measurement As String
measurement = "20.02"
Dim field_name As New Field
Dim table_name As tabledef
'**** table_1 is an existing table
Set table_name = my_database.TableDefs("table_ 1")
'**** add a new field to the correct record
field_name.Name = "field_2"
field_name.Type = DB_TEXT
field_name.Attributes = DB_UPDATABLEFIELD
field_name.Size = 6
'**** add a new field
table_name.Fields.Append field_name
'**** I now want to enter a string (called measurement) into the new field
data1.RecordSource = table_name
'*************************************************************************
'**** this reports an error
data1.Database.TableDefs(table_name).Fields(field_name) = measurement
'**** The error states -> Property value only valid when field is part of a recordset
'**** My question is - why does this not work!!!
'**** I think that I need to establish a recordset but the help files
'**** do not make this clear.
'**** If this is correct how do I do this.
3. Enter key to move field to field
5. Passing from field to field with Enter key
6. 7357-NY-STERLING FOREST-PL/1-ORACLE-Designer 2000-Developer 2000-Programmer
8. PL/SQL code to launch Netscape from Forms 5.0
9. Entering Dates into a smalldatetime field
10. Automatically Enter data in a field
12. How to just enter time in a datetime field
13. How to i enter images into a field