kinj312
Name: kinj312
Score: 2,488.52
Last Seen: 406 days, 18 hours, 52 minutes ago
Member Since: 26 October, 2010
DotNetShoutout
atom rss
8
Shouts

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

published 530 days, 22 hours, 24 minutes ago posted by kinj312kinj312 536 days, 16 hours, 53 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, 12 hours, 39 minutes ago posted by kinj312kinj312 538 days, 15 hours, 7 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, 12 hours, 39 minutes ago posted by kinj312kinj312 538 days, 15 hours, 8 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, 12 hours, 39 minutes ago posted by kinj312kinj312 538 days, 15 hours, 8 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, 12 hours, 39 minutes ago posted by kinj312kinj312 539 days, 19 hours, 13 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, 12 hours, 39 minutes ago posted by kinj312kinj312 539 days, 19 hours, 17 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, 12 hours, 39 minutes ago posted by kinj312kinj312 539 days, 19 hours, 18 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, 12 hours, 39 minutes ago posted by kinj312kinj312 539 days, 19 hours, 29 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, 12 hours, 39 minutes ago posted by kinj312kinj312 540 days, 19 hours, 38 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, 12 hours, 39 minutes ago posted by kinj312kinj312 540 days, 19 hours, 39 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, 12 hours, 39 minutes ago posted by kinj312kinj312 540 days, 19 hours, 40 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 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 543 days, 19 hours, 41 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 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 543 days, 19 hours, 46 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 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 543 days, 19 hours, 46 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 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 543 days, 19 hours, 47 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 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 544 days, 19 hours, 38 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
8
Shouts

Day 62: PL/SQL - 10 (EXIT and EXIT-WHEN statement in Pl/SQL)

published 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 544 days, 19 hours, 38 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Thursday, November 24, 2011 7:12:18 AM GMT
EXIT statement EXIT statement is similar to the BREAK statement found in other programing languages like C, C++, Java, C# , JavaScript, SQL SERVER etc. It breaks the loop statement once the specified condition becomes true and then control comes to the... (more)
category: Data | clicked: 7 | comment | | source: beyondrelational.com
tags: SQL Server, PL/SQl, TSQL
7
Shouts

TSQL Challenge 69 - Find the most relevant advertisement based on keywords – Part 2

published 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 545 days, 20 hours, 45 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Wednesday, November 23, 2011 6:05:45 AM GMT
A website wants to display most relevant ads on each of its web pages based on the keywords associated with each page. Your job is to write a TSQL query that returns the advertisements most relevant to each web page given in the source table. This challenge... (more)
category: Data | clicked: 12 | comment | | source: beyondrelational.com
tags: SQL Server, tsql challenges, TSQL
8
Shouts

SQL Server – Profiler – Part 1 - What is a SQL Trace? Permissions, space requirements and launching the Profiler

published 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 545 days, 20 hours, 45 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Wednesday, November 23, 2011 6:05:25 AM GMT
Microsoft SQL Server comes with a host of development and administrator features that warrant a separate IDE – the SQL Server Management Studio (SSMS). While the SSMS allows a developer or an administrator to write and debug T-SQL code and manage and... (more)
category: Data | clicked: 14 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
6
Shouts

DBCC CHECKDB

published 542 days, 22 hours, 25 minutes ago posted by kinj312kinj312 545 days, 20 hours, 45 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Wednesday, November 23, 2011 6:05:01 AM GMT
Torn Pages \ Corrupt pages – all in a days work for a DBA. But can anyone tell me how to use DBCC CHECKDB and the steps to take if a corrupt page is discovered? This is a typical question I’ll ask at an interview for a DBA. In most cases the... (more)
category: Data | clicked: 11 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, Database