DotNetShoutout - Stories tagged with SQL Server
10
Shouts

Day 75: PL/SQL - 13 (How to make custom Aggregate Function in Oracle)

published 522 days, 5 hours, 45 minutes ago posted by dharadhara 523 days, 12 hours, 6 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Monday, December 12, 2011 8:17:57 AM GMT
In this article, we will look into creating our own Aggregate Function in Oracle. User-defined aggregates are a feature of the Extensibility Framework.It is possbile to make user define Aggregate function because of Oracle's Data Cartridge model which... (more)
category: Data | clicked: 14 | comment | | source: beyondrelational.com
tags: SQL Server, PL/SQl, TSQL
13
Shouts

SQL Server – Profiler – Part 5 – Replaying a trace – from a file or a table – using breakpoints during trace replay

published 513 days, 20 hours, 19 minutes ago posted by dharadhara 523 days, 12 hours, 8 minutes ago
Thursday, December 22, 2011 12:05:29 AM GMT Monday, December 12, 2011 8:15:59 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. Four parts have been published till date, and for your kind reference, here are the links to them: What is a SQL... (more)
category: Data | clicked: 66 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
9
Shouts

Day 74: ROW_NUMBER, RANK, DENSE_RANK, NTILE in Oracle

published 522 days, 5 hours, 45 minutes ago posted by kinj312kinj312 525 days, 11 hours, 48 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Saturday, December 10, 2011 8:36:13 AM GMT
RowNumber() - Assigns sequential numbers to the records of a result-set or to the records within groups of a result-set Rank() - Returns the rank of each row within the partition of a result set. DenseRank() - Returns the rank of rows within the partition... (more)
category: Data | clicked: 6 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, Oracle
10
Shouts

Data Loading Performance Guide

published 522 days, 5 hours, 45 minutes ago posted by kinj312kinj312 525 days, 11 hours, 49 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Saturday, December 10, 2011 8:35:50 AM GMT
Bulk loading with large amounts of data requires strategy. The Data Loading Performance Guide for SQL Server 2008 and SQL Server 2005 is a very useful document. Highlights Understanding Minimally Logged Operations Trace Flag 610 (sql server 2008) Summarizing... (more)
category: Data | clicked: 28 | 1 comment | | source: beyondrelational.com
tags: SQL Server, Database
8
Shouts

Day 73: Merge Statement in Oracle

published 524 days, 8 hours, 12 minutes ago posted by dharadhara 526 days, 11 hours, 43 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Friday, December 09, 2011 8:41:15 AM GMT
Purpose: It is a DML statement that is use for performing the Insert / Update or Delete statement to the target table based on the conditions supplied. It is introduce from Oracle 9i Let us see an example to understand this one First let us create a source... (more)
category: Data | clicked: 6 | 1 comment | | source: beyondrelational.com
tags: SQL Server, Oracle
7
Shouts

A new feature of SQL Server Denali - Multi Monitor Support of SSMS

published 524 days, 8 hours, 12 minutes ago posted by dharadhara 526 days, 11 hours, 44 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Friday, December 09, 2011 8:40:49 AM GMT
I have drafted all the new features and enhancements introduced by SQL Server denali CTP1 and CTP3 . Multi Monitor Support is the new feature among them. We can do with this feature : 1. Using this feature we can use multi screen of query analyzer or... (more)
category: Data | clicked: 36 | 1 comment | | source: beyondrelational.com
tags: SQL Server, ssms, TSQL
7
Shouts

Adding a Target line to a Horizontal Bar Chart in SSRS

published 524 days, 8 hours, 12 minutes ago posted by dharadhara 526 days, 11 hours, 44 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Friday, December 09, 2011 8:40:26 AM GMT
This is usually the time of the year when I get to my laziest best. The cold weather and the approaching holiday season brings out the sloth in me and I have a huge backlog of articles I need to read as well as tend to. But somehow I have pulled... (more)
category: Data | clicked: 20 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, SSRS
6
Shouts

MS DTC and sys.dm_tran_active_transactions

published 524 days, 8 hours, 12 minutes ago posted by kinj312kinj312 527 days, 10 hours, 44 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Thursday, December 08, 2011 9:40:28 AM GMT
A sql reindex command was being blocked by two active transactions in MS DTC. Use sys.dmtranactivetransactions to report more detail on transactions select * from sys.dmtranactivetransactions where transaction_uow = '922D5B60-A5CA-4C96-8891... (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
7
Shouts

Day 72: Synonym in Oracle

published 524 days, 8 hours, 12 minutes ago posted by kinj312kinj312 527 days, 10 hours, 44 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Thursday, December 08, 2011 9:39:57 AM GMT
Purpose: It is an alternative name/alias assigned to the objects like views, sequences, stored procedures etc. Syntax Create [or Replace] [Public] Synonym [Schema .] SynonymName For [schema .] objectname [@ dblink]; It is an alias for the following... (more)
category: Data | clicked: 4 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, Oracle
7
Shouts

Getting Started with SSRS - Part 6 - Creating, Deleting and Moving a folder in SSRS Server

published 524 days, 8 hours, 12 minutes ago posted by kinj312kinj312 527 days, 10 hours, 49 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Thursday, December 08, 2011 9:35:26 AM GMT
In this article we are going to see how to manage the folders in Reporting Server. In our earlier articles we have seen how to create and deploy a report to the reporting server. We have seen cases where we need to manage the reports based on the requirement like moving a report to a folder and take a backup. (more)
category: Data | clicked: 2 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
8
Shouts

SQL Server – Profiler – Part 4 – Review T-SQL code to identify objects no longer supported by Microsoft - Deprecation Event

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 528 days, 11 hours, 31 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Wednesday, December 07, 2011 8:53:04 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. Three parts have been published till date, and for your kind reference, here are the links to them: What is a SQL... (more)
category: Data | clicked: 4 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
9
Shouts

Day 71: Sequence in Oracle

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 529 days, 12 hours, 34 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 7:50:18 AM GMT
Purpose: Generates auto number field in tables. Syntax CREATE SEQUENCE sequence_name MINVALUE value MAXVALUE value START WITH value INCREMENT BY value CACHE value; We can create a sequence as under SQL> CREATE SEQUENCE MySequence 2 MINVALUE 1 3 MAXVALUE... (more)
category: Data | clicked: 29 | 1 comment | | source: beyondrelational.com
tags: SQL Server, Oracle
7
Shouts

Linux Server OS information

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 529 days, 12 hours, 35 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 7:49:43 AM GMT
The following commands are useful to gather Linux server information . The Linux system information is useful for such scenarios as: a) The Server Engineer requests a spec for a new Linux server build from the DBA. b) Collating inventory information for... (more)
category: Data | clicked: 10 | comment | | source: beyondrelational.com
tags: Linux, SQL Server
7
Shouts

ALTER INDEX permissions

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 529 days, 12 hours, 35 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 7:49:23 AM GMT
Developers like to have some control over the development process. An example is index building. Asking a DBA repeatedly for changes to a Development Database might not be the best use of time – for either parties. For example, a developer may want to... (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, DBA, TSQL
8
Shouts

Getting Started with SSRS - Part 5 - Deploying a report to the Server

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 529 days, 12 hours, 36 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 7:48:38 AM GMT
In our earlier articles, we have seen how to design a report and connect to the database to pull out the values based on the requirement to be shown in the report. Also, we have seen the configuration section on how to configure the SQL Server Reporting Services manually by providing the Report Server name. (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, BI, SSRS
7
Shouts

Day 70: Dual table in Oracle

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 530 days, 9 hours, 53 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Monday, December 05, 2011 10:31:08 AM GMT
Purpose: It is a dummy table in Oracle with one row and one Varchar2 column whose length is 1. It's structure looks as under SQL> Desc Dual; Name Null? Type ----------------------------------------- -------- ------------- DUMMY VARCHAR2(1) The... (more)
category: Data | clicked: 1 | comment | | source: beyondrelational.com
tags: SQL Server, Oracle
9
Shouts

Aggregate functions always return at least a row although table is empty

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 530 days, 9 hours, 54 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Monday, December 05, 2011 10:30:27 AM GMT
There are many aggregate functions available in SQL Server. One thing that most of the people forget is that Aggregate functions always return atleast a row no matter if there are rows in the table or where clause returns or does not return any resultset... (more)
category: Data | clicked: 15 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
9
Shouts

SQL Server 2012: Service Accounts Changes

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 530 days, 9 hours, 55 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Monday, December 05, 2011 10:29:13 AM GMT
After SQL Server 2012 RC0 installation I noticed a few changes in SQL Server services account configuration. In previous versions (SQL Server 2005 and 2008/R2) during stand-alone SQL Server installation, local Windows group is created and service account... (more)
category: Data | clicked: 13 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
7
Shouts

Monitoring a Rollback and sys.dm_exec_requests

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 532 days, 13 hours, 7 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

SQL Server trace flags

published 527 days, 15 hours, 58 minutes ago posted by kinj312kinj312 532 days, 13 hours, 8 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Saturday, December 03, 2011 7:16:24 AM GMT
Normally I’m not a big fan of using traceflags, my advice is only to use these when it is absolutely necessary otherwise don’t. Here is a list of the documented traceflags that you can use with SQL Server. That is the documented once, besides that there... (more)
category: Data | clicked: 4 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
Previous 1 2 ... 4 5 6 7 8 9 10 11 12 13 ... 43 44 Next