Click here to Skip to main content
15,879,326 members
Home / Discussions / Database
   

Database

 
AnswerRe: Where to store my files? Pin
Eddy Vluggen1-Jun-09 5:05
professionalEddy Vluggen1-Jun-09 5:05 
GeneralRe: Where to store my files? Pin
musefan1-Jun-09 5:13
musefan1-Jun-09 5:13 
GeneralRe: Where to store my files? Pin
Eddy Vluggen1-Jun-09 7:57
professionalEddy Vluggen1-Jun-09 7:57 
QuestionVFP OLE DB Provider error: Variable X is not found Pin
dasha_pl1-Jun-09 3:35
dasha_pl1-Jun-09 3:35 
QuestionSQL 2008 Workgroup - how do CALs work? Pin
aastudent1-Jun-09 0:38
aastudent1-Jun-09 0:38 
AnswerRe: SQL 2008 Workgroup - how do CALs work? Pin
Mycroft Holmes1-Jun-09 1:14
professionalMycroft Holmes1-Jun-09 1:14 
GeneralRe: SQL 2008 Workgroup - how do CALs work? Pin
aastudent1-Jun-09 1:26
aastudent1-Jun-09 1:26 
Questionproblem in executing stored procedure Pin
souravghosh1831-May-09 20:12
souravghosh1831-May-09 20:12 
I am executing a stored procedure written in oracle from my web page.The procedure has 5 input variable and 2 output variable.But when i am executing the procedure it gives an error.

"ORA-06502: PL/SQL: numeric or value error: character string buffer too small"

i ma using following code,

cmdproc.CommandType = CommandType.StoredProcedure
cmdproc.CommandText = "avlmfg.PROC_TUBE_COIL_LINK"
Dim tub_batch As OracleParameter = cmdproc.Parameters.Add("ls_tube_batch", OracleDbType.Varchar2)
Dim tub_aufnr As OracleParameter = cmdproc.Parameters.Add("ls_aufnr", OracleDbType.Varchar2)
Dim tub_matnr As OracleParameter = cmdproc.Parameters.Add("ls_mill_matnr", OracleDbType.Varchar2)
Dim tub_nos As OracleParameter = cmdproc.Parameters.Add("ln_no_of_tubes", OracleDbType.Int64)
Dim tub_arbpl As OracleParameter = cmdproc.Parameters.Add("ls_arbpl", OracleDbType.Varchar2)
Dim tub_error_flag As OracleParameter = cmdproc.Parameters.Add("LS_ERROR_FLAG", OracleDbType.Varchar2)
Dim tub_data1 As OracleParameter = cmdproc.Parameters.Add("data1", OracleDbType.Varchar2)
tub_batch.Direction = ParameterDirection.Input
tub_aufnr.Direction = ParameterDirection.Input
tub_matnr.Direction = ParameterDirection.Input
tub_nos.Direction = ParameterDirection.Input
tub_arbpl.Direction = ParameterDirection.Input
tub_error_flag.Direction = ParameterDirection.Output
tub_data1.Direction = ParameterDirection.Output

tub_batch.Value = txtChargR1.Text.ToUpper()
tub_aufnr.Value = txtPO.Text.Trim
tub_matnr.Value = txtMatnr1.Text.Trim
tub_nos.Value = schqty
tub_arbpl.Value = arbpl
cmdproc.ExecuteNonQuery()

Thanx in advance,
AnswerRe: problem in executing stored procedure Pin
Aman Bhullar6-Jun-09 1:50
Aman Bhullar6-Jun-09 1:50 
AnswerRe: problem in executing stored procedure Pin
Niladri_Biswas25-Jun-09 5:57
Niladri_Biswas25-Jun-09 5:57 
QuestionCONTAINS not working in my full text search Pin
Brendan Vogt31-May-09 5:13
Brendan Vogt31-May-09 5:13 
AnswerRe: CONTAINS not working in my full text search Pin
Satish Pai31-May-09 19:49
Satish Pai31-May-09 19:49 
Questionline break not working in crystal reports ? Pin
kindman_nb30-May-09 21:58
kindman_nb30-May-09 21:58 
AnswerRe: line break not working in crystal reports ? Pin
Rajesh Anuhya1-Jun-09 0:03
professionalRajesh Anuhya1-Jun-09 0:03 
QuestionHelp with SQL query Pin
Joe_P30-May-09 10:30
Joe_P30-May-09 10:30 
AnswerRe: Help with SQL query Pin
Mycroft Holmes30-May-09 23:06
professionalMycroft Holmes30-May-09 23:06 
GeneralRe: Help with SQL query Pin
Joe_P31-May-09 4:11
Joe_P31-May-09 4:11 
GeneralRe: Help with SQL query Pin
Mycroft Holmes31-May-09 11:10
professionalMycroft Holmes31-May-09 11:10 
GeneralRe: Help with SQL query Pin
Joe_P31-May-09 11:23
Joe_P31-May-09 11:23 
GeneralRe: Help with SQL query Pin
Mycroft Holmes31-May-09 11:36
professionalMycroft Holmes31-May-09 11:36 
GeneralRe: Help with SQL query Pin
Joe_P31-May-09 14:08
Joe_P31-May-09 14:08 
GeneralRe: Help with SQL query Pin
Mycroft Holmes31-May-09 17:24
professionalMycroft Holmes31-May-09 17:24 
GeneralRe: Help with SQL query Pin
smcnulty20004-Jun-09 1:24
smcnulty20004-Jun-09 1:24 
AnswerRe: Help with SQL query Pin
Niladri_Biswas2-Jul-09 0:25
Niladri_Biswas2-Jul-09 0:25 
Questionget the inserted GUID Pin
Mohammad Al Hoss30-May-09 2:18
Mohammad Al Hoss30-May-09 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.