1 |
'********************************************************************** |
1 |
' Visual Basic ActiveX Script |
1 |
'************************************************************************ |
1 |
1 |
Function Main() |
1 |
Dim oPkg, oStep |
1 |
1 |
<strong>'ACCEDI AL MAIN OBJ DEL PACKAGE IN CUI è COMPRESO LO SCRIPT</strong> |
1 |
Set oPkg = <strong>DTSGlobalVariables.Parent </strong> |
1 |
<strong> </strong> |
1 |
<strong> 'ACCEDI ALL'ELENCO DEGLI STEPS DTS</strong> |
1 |
set oStep = <strong>oPkg.Steps("DTSStep_DTSActiveScriptTask_3") </strong> |
1 |
' oStep.ExecutionResult = DTSTaskExecResult_Success |
1 |
msgbox(oStep.ExecutionResult) |
1 |
oStep.ExecutionResult = 0 |
1 |
Main = DTSTaskExecResult_Success |
1 |
End Function |
Convertire una stringa (sequenza di caratteri) in un dato di tipo data o timestamp in SQL standard è abbastanza semplice tramite il comando ‘cast‘ . Semplicemente scrivento : cast(‘2010-3-31’ as datetime) oppure cast(‘2010-3-31’ as timestamp) otteniamo la conversione, ma come sempre nel caso delle date non esiste la parola semplice, i formati con cui si…
Leggi tutto
sometime happen that you need to create a table from a query… now we can assume that you have old_table and you wanna build a copi of entire data into another table new_table… This operation is not a standard sql but a lot DataBases can do this : in Oracle you can do this like…
Leggi tutto