dineshsdoani
Name: dineshsdoani
Score: 641.09
Last Seen: 427 days, 17 hours, 19 minutes ago
Member Since: 24 June, 2010
DotNetShoutout
atom rss
7
Shouts

Monitoring a Rollback and sys.dm_exec_requests

published 531 days, 2 hours, 41 minutes ago posted by kinj312kinj312 535 days, 23 hours, 51 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Saturday, December 03, 2011 7:16:56 AM GMT
The dynamic management view ( DMV ) sys.dmexecrequests returns information about each request that is executing within SQL Server. Instead of using Activity Monitor to view the status of a Rollback, use this T-SQL code . Activity monitor is based on... (more)
category: Data | clicked: 10 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
6
Shouts

Day 69: SOUNDEX function in Oracle

published 531 days, 2 hours, 41 minutes ago posted by kinj312kinj312 535 days, 23 hours, 53 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Saturday, December 03, 2011 7:14:19 AM GMT
Purpose: It compares the field values that sounds like the supplied input word. Syntax: SOUNDEX(Value to compare) SQL> Select * From tblPlayers 2 Where Soundex(BELONGSTO) = Soundex('Lindia'); PLAYERID PLAYERFIRS PLAYERLAST BELONGSTO DOB FEEPERMATCH... (more)
category: Data | clicked: 1 | comment | | source: beyondrelational.com
tags: SQL Server, Oracle
8
Shouts

Getting Started with SSRS - Part 4 - Configuring SQL Server Reporting Services in Windows Server 2008

published 531 days, 2 hours, 41 minutes ago posted by kinj312kinj312 536 days, 21 hours, 9 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Friday, December 02, 2011 9:58:48 AM GMT
In our previous articles, we have seen how to install SQL Server Reporting Services and to create a new report using the Report Wizard and Report Designer Window. Now, in this article we are going to see how to configure SQL Server Reporting Services in Windows Server 2008 environment. (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
9
Shouts

SQL SERVER: Develop Reports with RDLC (Asp.Net)

published 531 days, 2 hours, 41 minutes ago posted by kinj312kinj312 536 days, 21 hours, 9 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Friday, December 02, 2011 9:58:17 AM GMT
As, I mentioned in my post, Load Reports without SQL SERVER Reporting Service with Asp.Net , we can develop a report without SQL SERVER Reporting Service. That is very simple to do with Microsoft Visual Studio. Please follow the following steps to generate... (more)
category: Web Dev | clicked: 10 | 1 comment | | source: beyondrelational.com
tags: SQL Server, RDLC, ASP.NET
8
Shouts

SQL Server – Profiler – Part 3 – Trace execution options – Save trace to file or a table, Auto-scroll and keyboard shortcuts

published 531 days, 2 hours, 41 minutes ago posted by kinj312kinj312 536 days, 21 hours, 10 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Friday, December 02, 2011 9:57:38 AM GMT
Based on popular demand from my colleagues and you, the kind reader, I am currently writing a series of posts on the SQL Server Profiler. The first part was an introduction attempting to answer the question - What is a SQL Trace? Permissions, space requirements... (more)
category: Data | clicked: 3 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
10
Shouts

SQL CLR DLL Register error in SQL Server - "The database owner SID recorded in the master database differs from the database owner SID recorded in database"

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 538 days, 19 hours, 24 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Wednesday, November 30, 2011 11:43:16 AM GMT
Recently while working with SQL CLR functionality and created DLL for the SQL CLR. But while registering this DLL in the database i got one surprised error. Lt's show you the script so you have more idea. We have a script to register DLL as following... (more)
category: Data | clicked: 5 | 1 comment | | source: beyondrelational.com
tags: SQL Server, CLR, TSQL
9
Shouts

Day 66: NLSSORT in Oracle

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 538 days, 19 hours, 25 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Wednesday, November 30, 2011 11:42:40 AM GMT
Purpose: Sorts characters by using string of bytes. It can be use both as a comparison and sorting parlance. Syntax: NLSSORT(SortColumn, NLSPARAM) Where, SortColumn => Column to sort NLSPARAM => It takes the form of NLS_SORT = sort where sort... (more)
category: Data | clicked: 5 | 1 comment | | source: beyondrelational.com
tags: SQL Server, Oracle
8
Shouts

Reference Dimensions

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 538 days, 19 hours, 25 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Wednesday, November 30, 2011 11:42:21 AM GMT
A reference dimension occurs when the key column for the dimension is joined indirectly to the fact table through a key in another dimension table. This results in a snowflake schema design. The following figure shows one fact table named InternetSales... (more)
category: Data | clicked: 14 | 1 comment | | source: beyondrelational.com
tags: SQL Server, DBA, TSQL
7
Shouts

Getting Started with SSRS - Part 2 - Designing a report using Report Wizard

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 539 days, 23 hours, 30 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Tuesday, November 29, 2011 7:37:39 AM GMT
This article frames a guideline on how to make the use of the Report Wizard and create a simple report using the Business Intelligence Studio. A Report Wizard is the simplest form for creating a readymade report by simply selecting the data that should be displayed and by selecting the inbuilt templates available as per the requirement. (more)
category: Data | clicked: 7 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
7
Shouts

T-SQL to get the SQL Server Service Start time and Up time of SQL Server service

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 539 days, 23 hours, 34 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Tuesday, November 29, 2011 7:33:41 AM GMT
There are number of occasions where we need to get to know the SQL Server service start date time and also from what time the SQL Services are up and running generally termed as Uptime. There are many ways to do it like check for temp DB Creation time... (more)
category: Data | clicked: 3 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
7
Shouts

Day 65: Insert into multiple tables from a single table in Oracle by using the INSERT ALL statement

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 539 days, 23 hours, 35 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Tuesday, November 29, 2011 7:32:50 AM GMT
In Oracle, it is possible to split the record based on the columns and to insert them into multiple tables at the same time. Consider the below case where we have the tblEmployee as our base table SQL> Select * From tblEmployee; EMPID EMPNAME SALARY... (more)
category: Data | clicked: 4 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, Oracle
7
Shouts

Getting Started with SSRS - Part 3 - Designing a report using Report Designer

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 539 days, 23 hours, 46 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Tuesday, November 29, 2011 7:21:13 AM GMT
This article would cover how to design a report using the Report Designer. In our previous article, we saw the option on designing a report using the Report Wizard with just the configurations used to design and develop the report with some simple steps. (more)
category: Data | clicked: 8 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
8
Shouts

More on Table-valued Parameters (TVP’s)

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 540 days, 23 hours, 56 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Monday, November 28, 2011 7:11:54 AM GMT
While finalising some slides for my presentation at the Canberra .Net User Group on Using XML and TVP’s to Transport Relational Data , I stumbled across a couple of posts by Bob Beauchemin relating to how TVP’s cause plan recompiles when called from ADO... (more)
category: Data | clicked: 9 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, TVP, Database
8
Shouts

SQL Server – Profiler – Part 2 – Profiler Templates, Template Types and Creating Customized Templates

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 540 days, 23 hours, 56 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Monday, November 28, 2011 7:11:07 AM GMT
Based on popular demand from my colleagues and you, the kind reader, I am currently writing a series of posts on the SQL Server Profiler. You can read the first part on What is a SQL Trace? Permissions, space requirements and launching the Profiler .... (more)
category: Data | clicked: 3 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
8
Shouts

Quick way to know all computed columns across tables

published 536 days, 16 hours, 56 minutes ago posted by kinj312kinj312 540 days, 23 hours, 57 minutes ago
Friday, December 02, 2011 2:11:13 PM GMT Monday, November 28, 2011 7:10:40 AM GMT
A computed column in SQL Server is an expression which is based on another column in the same table. Consider the following example create table testtable ( id int, names varchar(100), custid as right('00000'+cast(id as varchar(10)),5) ) GO... (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
9
Shouts

SSRS Tutorial - Part 1 - SQL Server Reporting Services Overview and Installing in Windows Server 2008

published 543 days, 2 hours, 42 minutes ago posted by kinj312kinj312 543 days, 23 hours, 58 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Friday, November 25, 2011 7:09:42 AM GMT
In this article, we would see what SQL Server Reporting Services are and a high-level overview of the architecture and the components involved in running reports on the SQL Server. This article is the first part of the series on SQL Server Reporting Services right from the architectural overview to running the customized report on different servers with deployment. (more)
category: Data | clicked: 74 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
8
Shouts

Day 63: PL/SQL - 11 (CONTINUE and CONTINUE-WHEN statement in Oracle 11g's Pl/SQL)

published 543 days, 2 hours, 42 minutes ago posted by kinj312kinj312 544 days, 3 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Friday, November 25, 2011 7:04:43 AM GMT
CONTINUE statement Introduce in Oracle 11g,this statement provides an easy way to force an immediate jump to the loop control statement Let us see this into action by writing a simple Even..Odd number program SQL> BEGIN 2 FOR i IN 1 .. 10 LOOP 3 IF... (more)
category: Data | clicked: 10 | 1 comment | | source: beyondrelational.com
tags: SQL Server, PL/SQl
8
Shouts

SSIS # 102 – Don’t be afraid to leverage TSQL in SSIS package

published 543 days, 2 hours, 42 minutes ago posted by kinj312kinj312 544 days, 3 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Friday, November 25, 2011 7:04:20 AM GMT
I hope so far you are convinced that you need to learn at least one ETL tool in order to stay competitive in the SQL/BI profession. I also hope that Microsoft SSIS is your choice. I’ve worked with two types of people with very different views on... (more)
category: Data | clicked: 11 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, SSIS
8
Shouts

Quotename in SQL

published 543 days, 2 hours, 42 minutes ago posted by kinj312kinj312 544 days, 4 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Friday, November 25, 2011 7:03:40 AM GMT
Quotename() is a SQL Server String function. It accepts an input string of of up to 128 characters. Which is a limitation, although you could easily create a workaround with a UDF Returns a Unicode string of a valid delimited identifier. Why would you... (more)
category: Data | clicked: 23 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
8
Shouts

Study of WAITSTATS(Part 4) - PREEMPTIVE_*

published 543 days, 2 hours, 42 minutes ago posted by kinj312kinj312 544 days, 23 hours, 55 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Thursday, November 24, 2011 7:12:41 AM GMT
PREEMPTIVE_XXX wait types are basically associated with the worker thread outside SQL engine. These wait types have been newly introduced in SQL server 2008. (SQL server will not have any control over the work.) Thank you to SQL server team introducing... (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL