Category Archives: General
Knowledge Base Management in Data Quality Services (DQS)
The DQS knowledge base is a container of metadata to use in improving data quality through data cleansing and data matching. A knowledge base consists of domains, each of which represents the data in a data field. DQS knowledge management … Continue reading
Domain Management in Data Quality Services (DQS)
Domain management enables the user to interactively change and augment the metadata that is generated by the computer-assisted knowledge discovery activity. Following are the activities we can perform on Domain Management: Create a new domain. The new domain can be … Continue reading
Data Quality Services (DQS) Security Management
The Data Quality Services (DQS) security management is based upon the SQL Server security management. Database administrator grants a user a set of permissions by associating the user with a DQS role. DQS Roles There are four roles for Data … Continue reading
Introduction to Data Quality Services (DQS) of SQL Server
The data quality solution provided by Data Quality Services (DQS) of SQL Server is used to maintain the quality of data and ensure that the data is suited for business usage. DQS is a knowledge-driven solution that provides both computer-assisted … Continue reading
How to call Web Service from HTML page using Jquery
Below are the steps to call web service from html page using jquery 1. Create a Web Service with marked as ScriptService [System.Web.Script.Services.ScriptService] public class TestService : System.Web.Services.WebService { This will allow the Web Service to be called from script, … Continue reading
How to implement Window Authentication Functionality to a C# Desktop Application
1) Get currently logged in user details: We can achieve this by using the WindowsIdentity class of System.Security.Principal namespace. This class provides a static method, getCurrent(), which return a object of WindowsIdentity. 2) Validate windows credentials provided by user:(Ask User … Continue reading
Writing to an ms access database using C# Window Application
Please try below code to write in MS ACCESS databse using C# Window Application: System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(@”Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\amar\Documents\Database1.accdb”); conn.Open(); using (System.Data.OleDb.OleDbCommand cmd = new System.Data.OleDb.OleDbCommand()) { cmd.Connection = conn; cmd.CommandText = “Insert Into Employee (UserName, fname, sname, email) … Continue reading
How to get date value form one form to another form using C# in Window Application
Create a constructor on form2 with input parameter as date time. And when you create object of form2 in form1 just pass the date value using C# in window application. form1 coding: DateTime objdate = dateTimePicker1.Value; form2 objform2= new form2(objdate) … Continue reading
How to pass parameters and get return values for Multithreaded Procedures using C#
Supplying and returning values in a multithreaded application is complicated because the constructor for the thread class must be passed a reference to a procedure that takes no arguments and returns no value. Parameters for Multithreaded Procedure The best way … Continue reading