‘********************************************************************** ‘ Visual Basic ActiveX Script ‘************************************************************************ Function Main() Dim oPkg, oStep ‘ACCEDI AL MAIN OBJ DEL PACKAGE IN CUI è COMPRESO LO SCRIPT Set oPkg = DTSGlobalVariables.Parent ‘ACCEDI ALL’ELENCO DEGLI STEPS DTS set oStep = oPkg.Steps(“DTSStep_DTSActiveScriptTask_3”) ‘ oStep.ExecutionResult = DTSTaskExecResult_Success msgbox(oStep.ExecutionResult) oStep.ExecutionResult = 0 Main = DTSTaskExecResult_Success 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