Forum Discussion

basszo50's avatar
basszo50
New Contributor
3 months ago

SQL with Onestream

Hi Everyone, I'm trying to use SQL with Onestream but don't know where to start , this is what l want to do in Onestream with SQL  create tables in Onestream, load data , modify data and keep them up-to-date. Demo will help me a lot.

  • FredLucas's avatar
    FredLucas
    Contributor III

    Hi basszo50,

    In order to create custom tables in OS I would probably suggest you use the Table Data Manager (TDM) solution available on Solution Exchange.

    You can then build a dashboard with a SQL editor component that points to that table. That will give users access to view and update data.

    If you want to be loading data from an excel or delimited file, the following code snippets might help you getting started (ensure you follow the file setup as per design and ref guide - link ):

    Delimited file:

    'Select Load options
    Dim loadMethod As String = "Replace"                   '<-- Select file load method (Replace, Merge)
    Dim dbLocation As String = "App"                       '<-- Specify db type
    Dim tableName As String = "XFT_Employee"               '<-- Specify table name to load
    Dim blnSkipHeader As Boolean = True                    '<-- Specify if the first row should be skipped (True/False)
          
    'Note: file path must be accessible from all application servers
    Dim fileName As String = "DelimitedFileName.csv"       '<-- Enter name of delimited file
    Dim filePath As String = "\\FileServerName\FilePath\"  '<-- Enter path to file
    
    'Define columns that are in the table (this must match the fields in the deminted file)
     'Update the fields with the column names/types to match the table being loaded
    Dim fieldTokens As New List(Of String)
    fieldTokens.Add("xfGuid#:[Field1]::NewGuid")
    fieldTokens.Add("xfText#:[Field2]")
    fieldTokens.Add("xfInt#:[Field3]")
    fieldTokens.Add("xfBit#:[Field4]")
    fieldTokens.Add("xfDec#:[Field5]")
    fieldTokens.Add("xfDbl#:[Field6]")
    fieldTokens.Add("xfDateTime#:[Field7]")
    
    'Execute file load
    BRApi.Utilities.LoadCustomTableUsingDelimitedFile(si, SourceDataOriginTypes.FromFileShare, filePath & fileName, Nothing, ",", dbLocation, tableName, loadMethod, fieldTokens, blnSkipHeader)

    Excel file:

    'Load Excel File
    'Note: file path must be accessible from all application servers
    Dim fileName As String = "ExcelFileName.xlsx"          '<-- Enter name of Excel file
    Dim filePath As String = "\\FileServerName\FilePath\"  '<-- Enter path to Excel file
       
    'Note: dbLocation, TableName, LoadMethod & Field names defined in header of each excel "xft" range.
    BRApi.Utilities.LoadCustomTableUsingExcel(si, SourceDataOriginTypes.FromFileShare, filePath & fileName, Nothing)

     

    You'll probably also find this Tech Talk useful:

    Tech Talks After Hours - Mining for Gold (Code) - SQL Parameterization