kalyanms1

Stories submitted by kalyanms1

Creating status indicators in SharePoint 2010(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 2 months ago

Status Indicator is a report type, where it shows and compares the actual performance of particular measure with goal value. Without doing any calculations, you can know the performance of a measure with good status indicator. You can know whether measure results are on target or off target. This post explains how to create a status indicator in SharePoint 2010. Status Indicator shows name, results and icon. It provides a quick information, green icon indicates good performance, Red icons flags the prob... read more...

add a comment |category: |Views: 19

tags: another

Creating Maintenance Plans in SQL Server 2008 R2 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 2 months ago

One of the repetitive task that DBA need to perform is create maintenance plan for database. Maintenance plans enables you to automate maintenance activities for a database, backups, db integrity checks and index maintenance tasks. We can easily create a maintenance plan using a wizard in sql server 2008 R2. read more...

add a comment |category: |Views: 22

tags: another

Monitoring running processes in SQL Server 2008 R2 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 2 months ago

You can view the current connections and processes that running on a sql server instance in two ways Using Activity Monitor Using T-SQL statements read more...

add a comment |category: |Views: 8

tags: another

SQL Server Reporting with Analysis Services (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 2 months ago

SQL Server Analysis Services is used to present the aggregated data to support analysis, ad-hoc reporting and decision making process. Technically CUBE is used in Analysis Services to build the aggregated data. Once it is build then you can easily navigate and produce reports for business analysis. This post discusses using analysis services in SQL Server Reporting with MDX query builder. read more...

add a comment |category: |Views: 0

tags: another

Filtering techniques for SQL Server 2008 R2 Reports(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

It is important to consider to filter report data based on user’s selection criteria as many databases contain large amounts of data. This post discusses different techniques to filter report data using report parameter concepts. By using the filters on reports, it greatly reduces the network traffic and helps the report to render efficiently. We are using same data source and query that we used to demonstrate the tabular reports demo. You can read the post here. Filtering by query - You can filte... read more...

add a comment |category: |Views: 3

tags: another

Chart Reports in SQL Server 2008 R2 reporting services (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

Charts are effective way to visualize the aggregated values. This post discuss about creating a chart, Pie and Gauge reports using SQL server 2008 R2 Reporting Services. You will notice a significant difference in chart types in SQL 2008 R2 compared to SQL 2005. read more...

add a comment |category: |Views: 6

tags: another

Tabular Reports in SQL Server 2008 R2 Reporting Services (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

It is important to understand the reporting options available in SQL Server 2008 R2 to provide an appropriate report layout to meet the business requirements and needs of our end users. This post briefly discusses about different report layout types available and explains in detail the steps to create a Tabular Report. It also explains how to sorting and drilldown features to your report. read more...

add a comment |category: |Views: 0

tags: another

Database Mail Configuration in SQL Server 2008 R2 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

This post explains the configuration steps that require to send an email from SQL server 2008 R2. It is useful if we could send an email from SQL Server to our administrators and end users. Database Mail is SQL server component that uses Simple Mail Transfer Protocol (SMTP) to send email messages. After setting up the Database email we can test the email and mail-log. read more...

add a comment |category: |Views: 4

tags: another

Internet Explorer 9 features for Developers (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

Microsoft recently launched its first release candidate for Internet Explorer 9 (IE9 RC1) can be downloaded from here. This post briefly speaks about the IE9 features and how developers can use these features. read more...

add a comment |category: |Views: 2

tags: another

Configuring SQL Server Reporting Services in SharePoint 2010 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

This post discusses how to configure SQL server reporting services in SharePoint Integration mode. You must do some configuration steps on both report server and SharePoint server to get report viewing on SharePoint sites. read more...

add a comment |category: |Views: 2

tags: another

Configuring PerformancePoint services in SharePoint 2010 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 3 months ago

The following are the configuration steps to get PerformancePoint up and running on SharePoint 2010 enterprise edition. As PerformancePoint service is integrated in SharePoint 2010 environment, we need to do some configurations in Sharepoint2010 Central Administration tool. read more...

add a comment |category: |Views: 4

tags: another

Configuring Power Pivot for SharePoint 2010(www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 4 months ago

This post explains about how to install and configure the Power Pivot for SharePoint 2010. You can read installation instructions for SharePoint 2010 here. You need to install SharePoint 2010 with un-configure state. You will be having the PowerPivot for SharePoint package in SQL Server 2008 R2 media. We are using new server installation option in SQL Server 2008 R2 setup. read more...

add a comment |category: |Views: 18

tags: another

SharePoint 2010 Installation (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 4 months ago

This Article describes installing SharePoint 2010 Enterprise edition on Windows Server 2008 operating system. You need to install SharePoint Prerequisite Installer before installing the SharePoint setup. This Prerequisite tool can be found inside the SharePoint Setup folder with name “PrerequisiteInstaller”. read more...

add a comment |category: |Views: 0

tags: another

Globalization and Localization with ASP.NET AJAX (dotnetsizzler.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 4 months ago

This post discusses about Globalization and Localization concepts in ASP.NET AJAX with an example. With this post we will be able to know how we can globalize and localize client script files to support internationalized applications. read more...

add a comment |category: |Views: 14

tags: another

Data Binding for Silverlight Application (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 6 months ago

This post explains loading data into Silverlight form using ADO.NET Data Services service. We need to do the following tasks to achieve this Creating an ADO.NET Data Services project Creating a Silverlight application and referring the created service above Creating the ADO.NET Data Services project read more...

add a comment |category: |Views: 3

tags: another

Building a CUBE in SQL Server 2008 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 1 year, 6 months ago

To create a cube, we need to create a Analysis Services Project in Visual Studio. Start Visual Studio, select File, New Project. In project dialogue box, select Business Intelligence Projects from Project Types and select Analysis Services Project from right in the dialogue box. read more...

add a comment |category: |Views: 1

tags: another