Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 81,196
» Latest member: AngelineAn
» Forum threads: 389
» Forum posts: 395

Full Statistics

Latest Threads
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,011
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,181
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,221
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,171
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,230
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,248
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,228
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,202
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,083

 
  What is a python component?
Posted by: gnanashri - 12-23-2022, 10:50 AM - Forum: BDB Data Pipeline Q & A - No Replies

Python component where you can write custom scripts similarly how you can write scripts handle/ manipulate data using python. 

Print this item

  Multi select Combo-box filter enhancement
Posted by: Athi - 12-23-2022, 10:50 AM - Forum: BDB Designer Q & A - No Replies

Script to enhance multi-select combo-box filter


sdk.setAfterRenderCallBack( 'filter3',function() {
var id = "#textBox"+sdk.getWidget( 'filter3' ).m_objectid;
    $(id).css('padding','0px 0px 0px 16px');
$("#textBox"+sdk.getWidget( 'filter3' ).m_objectid).css("outline","none");
var b = "#simpleCombo"+sdk.getWidget( 'filter3' ).m_objectid+" div";
        $(b).css('width','40px');
});



This script provides more padding between component left and right borders, drop down icon

Print this item

  Radio button enhancement using script
Posted by: neeraja.pattathil@bdb.ai - 12-23-2022, 10:49 AM - Forum: BDB Designer Q & A - No Replies

How to enhance the radio button UI by using a script?


Script area: Dashboard
Script:
var r1=sdk.getWidget('radio44');
r1.m_enhanceradio= true;
r1.m_enhanceradioobj.margin='0 16px 0 16px';
r1.m_enhanceradioobj.selectedleft =16;

Print this item

  Regular expression for valid name and email
Posted by: Sruthi P - 12-23-2022, 10:49 AM - Forum: BDB Designer Q & A - No Replies

How to write regular expression pattern for valid name and email?

var myRe = /^([C][F])+-[A-Z]{2}-[A-Z]{3}-\d{3}$/ ;

var result_id=myRe.test(fleet_id);
var myEmail = /^(([^<>()\[\]\\.,;:\s@']+(\.[^<>()\[\]\\.,;:\s@']+)*)|('.+'))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;

Print this item

  What is the use or scheduler and how to use it
Posted by: gnanashri - 12-23-2022, 10:49 AM - Forum: BDB Data Pipeline Q & A - No Replies

When we need to start pipelines promptly, we use scheduler components, which are always maintained in "Real Time." The component may be given a time slot, at which point the later pipeline components will be triggered. 

Print this item

  What is User Security ?
Posted by: Asma M - 12-23-2022, 10:49 AM - Forum: BDB Platform Q & A - No Replies

The user security allows the user/group to provide certain access on the platform so that security of the data and access can be maintained. 

Print this item

  Synonyms addition in Data Store
Posted by: manirathinavelu.m - 12-23-2022, 10:49 AM - Forum: BDB Search Q & A - No Replies

What are the methods to add synonyms to the column names and values? And how to use the while using AI search

Print this item

  Data Hashing
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 10:48 AM - Forum: BDB ETL and Data Prep Q & A - No Replies

Hashing is the transformation of a string of characters into a usually shorter fixed-length value or key that represents the original string. Hashing is used to index and retrieve items in a database because it is faster to find the item using the shorter hashed key than to find it using the original value. 
Hashing is part of preparing the data which also provides an encryption for the data

Print this item

  Steps to Publish the Data Sheet
Posted by: rubeena.hajira - 12-23-2022, 10:47 AM - Forum: BDB Designer Q & A - No Replies

How to Publish Data Sheet?


·        Navigate to the Data Sheets list.
·        Click the Publish icon for the selected Data Sheet.
·        The Publish Data Sheet window opens.
·         Select USER LIST or USER GROUPS tab to share the published Data Sheet (Use the EXCLUDE USER tab if you want to exclude any user from the rights to access a data sheet).
·        Click the Save option.
·        A confirmation message appears as Successfully save the Dashboard.
·        Another confirmation message appears to inform that the datasheet has been updated successfully.
·        The selected Data Sheet gets published on the My Documents space of all the selected user/s.

Print this item

  Row level data security
Posted by: manirathinavelu.m - 12-23-2022, 10:47 AM - Forum: BDB Platform Q & A - No Replies

How to give row level data security based on each user and their roles ?

Print this item