Posts

Showing posts from 2013

What is Salesforce?

Image
Salesforce.com was co founded by Mark Benioff to provide customer relationship management (CRM) software delivered entirely over the internet (Cloud computing). Customers would no longer need to purchase servers with infrastructure and install software. All they would need is internet connection and a web browser. Salesforce was founded in 1999. Salesforce started as a CRM company and evolved into much more over time. What is CRM? CRM is a model used to manage organization’s interactions. – Phone calls – Emails – Meeting – Social Media With customers and prospects pertaining to – Sales – Marketing – Support Goals of CRM – Increasing Sales revenue – Increase visibility between departments – Decrease operating costs – Streamline business process CRM is a major component of sales force platform. Following image describes what is Sales force? Above image provides description about Salesforce. Addition to the “CRM” Salesforce provides ability to provide Custom applications and also AppExch...

Salesforce 9 Tutorial

Image
Salesforce tutorial helps you to understand basic concepts of Salesfroce. Now Salesforce.com is a number one on demand CRM in the market. It runs on the force.com platform, it reduces development cost and we can deliver application in very short time. Salesforce is a cloud computing technology. It is available on cloud, no need install any software and no hardware required. In salesforce.com you can develop our own applications or if you need any application on demand, you can buy from app exchange. App Exchange is a market place to sell our custom applications and to buy applications from app exchange. One of the main advantage of sfdc is upgrading the features three times per year. Every year salesforce provide three releases called winter, Spring and Summer. These releases won’t impact your existing functionality. And salesforce provide many new features with each release. Introduction to Salesforce.com(SFDC) SFDC was officially launched in 1999 with vision of becoming worldwide lea...

SQL Server interview questions

Explain the use of keyword WITH ENCRYPTION. Create a Store Procedure with Encryption.It is a way to convert the original text of the stored procedure into encrypted form. The stored procedure gets obfuscated and the output of this is not visible to CREATE PROCEDURE Abc WITH ENCRYPTION AS << SELECT statement>> GO What is a linked server in SQL Server?It enables SQL server to address diverse data sources like OLE DB similarly. It allows Remote server access and has the ability to issue distributed queries, updates, commands and transactions. Features and concepts of Analysis Services Analysis Services is a middle tier server for analytical processing, OLAP, and Data mining. It manages multidimensional cubes of data and provides access to heaps of information including aggregation of data One can create data mining models from data sources and use it for Business Intelligence also including reporting features. Some of the key features are: · Ease of u...

Using while loop to loop through a cursor

Cursor in SQL is used to define a set of data rows and perform complex logic on each row by row basis. Understand with Example The Tutorial grasp you an example on 'Using while loop to loop through a cursor'. The Example create a table Stu_Table'. The create table construct a table 'Stu_Table' with table attribute like field name,data type etc. Create Table Stu_Table create table Stu_Table(Stu_Id integer(2), Stu_Name varchar(15), Stu_Class varchar(10)) Insert data into Stu_Table Once your table is created, The insert into add the records or rows to the table 'Stu_Table'. insert into Stu_Table values(1,'Komal',10); insert into Stu_Table values(2,'Ajay',10); insert into Stu_Table values(3,'Rakesh',10); insert into Stu_Table values(4,'Bhanu',10); insert into Stu_Table values(5,'Santosh',10); insert into Stu_Table values(6,'Tanuj',10); Stu_Table Stu_Id Stu_Name Stu_Class 1 Komal 10 2 Ajay 10 3 Rakesh 10 4 Bhanu 1...

SQL Server interview questions

Explain the use of keyword WITH ENCRYPTION. Create a Store Procedure with Encryption. It is a way to convert the original text of the stored procedure into encrypted form. The stored procedure gets obfuscated and the output of this is not visible to  CREATE PROCEDURE Abc WITH ENCRYPTION AS << SELECT statement>> GO What is a linked server in SQL Server? It enables SQL server to address diverse data sources like OLE DB similarly. It allows Remote server access and has the ability to issue distributed queries, updates, commands and transactions. Features and concepts of Analysis Services Analysis Services is a middle tier server for analytical processing, OLAP, and Data mining. It manages multidimensional cubes of data and provides access to heaps of information including aggregation of data One can create data mining models from data sources and use it for Business Intelligence also including reporting features. Some of the key features are: · Ease of use wit...

C#.NET/VB.NET interview questions

Explain the elements of the .NET Framework. a. CLR (Common Language Runtime): It is a common managed environment where all the .net programs run. Supports multiple languages and has the garbage collector. b. .Net Framework Class Libraries: For each source code compiler (VB.NET, C#.NET, etc.), there is a minimum set of coding standards that must be met. The minimum set of coding standards that must be met to compile .NET code into MSIL code is known as CLS - Common Language Specification. The role of the Common Language Specification is to ensure that all generated code (MSIL) that meets the minimum set of coding standards can operate successfully within the .NET framework. THE CTS (Common Type System) handles conversion of programming-language data types into .NET compatible (MSIL) data types. The implicit benefit of the CTS is the reduction of development time when attempting to coordinate data types between two sets of different programming-language code. c. Data and XML: Support ...

C#.NET/VB.NET interview questions

Image
Explain the elements of the .NET Framework. a. CLR (Common Language Runtime): It is a common managed environment where all the .net programs run. Supports multiple languages and has the garbage collector. b. .Net Framework Class Libraries: For each source code compiler (VB.NET, C#.NET, etc.), there is a minimum set of coding standards that must be met. The minimum set of coding standards that must be met to compile .NET code into MSIL code is known as CLS - Common Language Specification. The role of the Common Language Specification is to ensure that all generated code (MSIL) that meets the minimum set of coding standards can operate successfully within the .NET framework. THE CTS (Common Type System) handles conversion of programming-language data types into .NET compatible (MSIL) data types. The implicit benefit of the CTS is the reduction of development time when attempting to coordinate data types between two sets of different programming-language code. c. ...