jacobsebastian
Name: jacobsebastian
Score: 4,772.5
Last Seen: 443 days, 16 hours, 15 minutes ago
Member Since: 6 April, 2010
DotNetShoutout
atom rss
7
Shouts

SQL Server – Performance tuning - DBCC FLUSHPROCINDB – Flush procedures of a particular database from cache

published 506 days, 9 hours, 10 minutes ago posted by dharadhara 510 days, 1 hour, 45 minutes ago
Tuesday, January 31, 2012 11:14:37 AM GMT Friday, January 27, 2012 6:39:39 PM GMT
Performance tuning & analysis during new development has it’s own unique challenge – on one hand as database developers, we need a clean procedure cache and on the other hand, we do not want to impact the performance of other databases on the same... (more)
category: Data | clicked: 17 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, Database
9
Shouts

Difference between generic handler and http handler- ASP.NET

published 506 days, 9 hours, 10 minutes ago posted by dharadhara 510 days, 1 hour, 44 minutes ago
Tuesday, January 31, 2012 11:14:37 AM GMT Friday, January 27, 2012 6:40:04 PM GMT
Generic handler: As per MSDN Generic Handler is a default handler which will have @webhandler directive and has .ashx extension this generic handler is not having UI but it provides response when ever any request made to this handler. HTTP Handler: HTTP... (more)
category: Web Dev | clicked: 64 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET
10
Shouts

Split a set of contiguous string into individual characters/letters using Set Based approach

published 517 days, 21 hours, 49 minutes ago posted by kinj312kinj312 519 days, 12 hours, 35 minutes ago
Thursday, January 19, 2012 10:35:12 PM GMT Wednesday, January 18, 2012 7:48:57 AM GMT
It is often a requirement to split a set of contiguous string into individual characters/letters. The below code will help us to do so Declare @str Varchar(50) = 'abcde' Select Data = Substring(@str,Number,1) From master.dbo.spt_values where Number... (more)
category: Data | clicked: 4 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
8
Shouts

SQL Server – Storage requirements – CHAR v/s VARCHAR – choose the correct data-type

published 512 days, 4 hours, 49 minutes ago posted by kinj312kinj312 519 days, 12 hours, 35 minutes ago
Wednesday, January 25, 2012 3:35:01 PM GMT Wednesday, January 18, 2012 7:49:16 AM GMT
I work with academia frequently, and therefore, get a chance to interact with students and experience the issues they face first hand. I recently had a very interesting experience during one of these visits. I will try to present the experience as a story... (more)
category: Data | clicked: 20 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
10
Shouts

TSQL Script - Generating/Concatenating values into a comma separated string with a grouping

published 514 days, 20 hours, 11 minutes ago posted by kinj312kinj312 519 days, 12 hours, 35 minutes ago
Monday, January 23, 2012 12:13:07 AM GMT Wednesday, January 18, 2012 7:49:41 AM GMT
This post is really inspired by Nakul's wonderful post: http://beyondrelational.com/blogs/nakul/archive/2011/12/29/sql-server-t-sql-different-ways-to-generate-a-comma-separated-string-from-a-table.aspx However, Whenever I faced a situation to concatenate... (more)
category: Data | clicked: 19 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
9
Shouts

Getting Started with SQL Azure - Getting started with SQL Azure - Part 7: SQL Azure administration - I - Paras Doshi

published 517 days, 21 hours, 49 minutes ago posted by dharadhara 520 days, 10 hours, 2 minutes ago
Thursday, January 19, 2012 10:35:12 PM GMT Tuesday, January 17, 2012 10:22:30 AM GMT
First up is how to Improve SQL Azure performance? Now, though SQL Azure is a cloud-based service and few details are abstracted from the service administrator – we still need to perform tasks from our side to get the best performance out of SQL Azure. (more)
category: Data | clicked: 7 | comment | | source: beyondrelational.com
tags: SQL Azure, Azure
9
Shouts

Using SSAS formatting in SSRS

published 517 days, 21 hours, 49 minutes ago posted by dharadhara 520 days, 10 hours, 1 minute ago
Thursday, January 19, 2012 10:35:12 PM GMT Tuesday, January 17, 2012 10:23:01 AM GMT
Christmas time is one of my most favourite times of the year – the time when you can just lay back, relax, enjoy some quality time with your family and catch up with your old friends. While this Christmas time has been a little hectic for me considering... (more)
category: Data | clicked: 6 | comment | | source: beyondrelational.com
tags: SQL Server, SSAS, BI, SSRS
9
Shouts

SSIS - Delete files from specified folder using Script Task in SQL Server

published 517 days, 21 hours, 49 minutes ago posted by dharadhara 520 days, 10 hours, 1 minute ago
Thursday, January 19, 2012 10:35:12 PM GMT Tuesday, January 17, 2012 10:23:33 AM GMT
Earlier we have seen for the files deletion using File System Task in SSIS. We have used it with Foreach Loop Container. Used a variable to hold file names which are passed from earlier stage one by one and then finally used with File System Task to delete... (more)
category: Data | clicked: 21 | comment | | source: beyondrelational.com
tags: SQL Server, SSIS
9
Shouts

Timestamp datatype - Does it store Date or Time?

published 519 days, 3 hours, 25 minutes ago posted by kinj312kinj312 521 days, 11 hours, 53 minutes ago
Wednesday, January 18, 2012 4:59:12 PM GMT Monday, January 16, 2012 8:31:39 AM GMT
Often deveopers confuse themselves between Timestamp and Datetime datatypes. But they are entirely different datatypes. Although the name has Time, the Timestamp datatype has nothing to do anything with date or time. Also you cannot explicitely add/update... (more)
category: Data | clicked: 8 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
10
Shouts

SSRS & SSAS #62 – Create a data source on Report Server for an Analysis Services database

published 519 days, 3 hours, 25 minutes ago posted by kinj312kinj312 521 days, 11 hours, 53 minutes ago
Wednesday, January 18, 2012 4:59:12 PM GMT Monday, January 16, 2012 8:31:09 AM GMT
The team I recently moved into had never had a data source created on their report server for an Analysis Services source. A co-worker helped me got a data source created with Microsoft SLQ Server Analysis Services as the Data Source Type. For credentials... (more)
category: Data | clicked: 5 | comment | | source: beyondrelational.com
tags: SQL Server, SSAS, BI, SSRS
10
Shouts

SQL Server – T-SQL – Different ways to generate a comma-separated string from a table

published 514 days, 20 hours, 11 minutes ago posted by kinj312kinj312 521 days, 11 hours, 54 minutes ago
Monday, January 23, 2012 12:13:07 AM GMT Monday, January 16, 2012 8:30:35 AM GMT
Recently, someone in the team faced a fairly common requirement - to generate a comma-separated string from values stored in a table. This being the last post of the year, I thought of sharing the 2 most-commonly used methods I know of implementing this... (more)
category: Data | clicked: 13 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL
8
Shouts

SSIS – Loop through rows in a SQL table (with multiple columns)

published 522 days, 8 hours, 30 minutes ago posted by dharadhara 524 days, 13 hours, 5 minutes ago
Sunday, January 15, 2012 11:54:38 AM GMT Friday, January 13, 2012 7:19:08 AM GMT
I am a SQL purist, meaning that I have vowed never to use cursors in T-SQL to loop through rows record by record. In SSIS package design, however, I have used the Foreach Loop Container very often. I would not say that I have broken my vows though for... (more)
category: Data | clicked: 48 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, SSIS, BI
10
Shouts

Async file upload with jquery and ASP.NET

published 516 days, 3 hours, 38 minutes ago posted by dharadhara 524 days, 13 hours, 5 minutes ago
Saturday, January 21, 2012 4:46:53 PM GMT Friday, January 13, 2012 7:19:31 AM GMT
Recently before some I was in search of good asynchronous file upload control which can upload file without post back and I have don’t have to write much custom logic about this. So after searching it on internet I have found lots of options but... (more)
category: Web Dev | clicked: 104 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP.NET
8
Shouts

SSIS - Delete files from specified folder using File System Task in SQL Server

published 522 days, 8 hours, 30 minutes ago posted by dharadhara 524 days, 13 hours, 4 minutes ago
Sunday, January 15, 2012 11:54:38 AM GMT Friday, January 13, 2012 7:19:57 AM GMT
We know all the various methods to delete the particular or all files from the specified folder using some of the methods like xpdeletefile , Ole Automation Procedures and with xp_cmdshell command line utility which we used for the old files archive... (more)
category: Data | clicked: 21 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, SSIS, BI
8
Shouts

Redirection in URL Routing

published 524 days, 13 hours, 1 minute ago posted by kinj312kinj312 525 days, 12 hours, 10 minutes ago
Friday, January 13, 2012 7:23:16 AM GMT Thursday, January 12, 2012 8:14:13 AM GMT
In one of the my earlier post I have written How easily we do URL rewriting in ASP.NET Web forms. In this post I am going to explain redirection in URL Routing. In web application it’s a common scenario that we are redirecting our page to the one from... (more)
category: Web Dev | clicked: 6 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET
8
Shouts

SQL Server – SQL 2012 (SQL11/Denali) – Query editor - Intellisense now recognizes hyperlinks!

published 524 days, 13 hours, 1 minute ago posted by kinj312kinj312 525 days, 12 hours, 11 minutes ago
Friday, January 13, 2012 7:23:16 AM GMT Thursday, January 12, 2012 8:13:43 AM GMT
I was playing around with my SQL 2012 (SQL 11/Denali) CTP03 instance the other day, and noticed a great usability enhancement to the Intellisense available in the Query editor. I was adding a reference to a particular web-page on a query that I was working... (more)
category: Data | clicked: 7 | comment | | source: beyondrelational.com
tags: SQL Server, TSQL, sql 2012
7
Shouts

Getting started with SQL Azure - Part 6: Migrating Databases to SQL Azure

published 524 days, 13 hours, 1 minute ago posted by kinj312kinj312 525 days, 12 hours, 11 minutes ago
Friday, January 13, 2012 7:23:16 AM GMT Thursday, January 12, 2012 8:13:01 AM GMT
In this module, we are going to see how we can migrate SQL Server 2008 R2 database to SQL Azure. We will also discuss about options available and their pros and cons. So, by the end of this article, you would be equipped with knowledge of tools that could help you migrate your SQL Server Database to SQL Azure. (more)
category: Data | clicked: 12 | comment | | source: beyondrelational.com
tags: SQL Server, SQL Azure, Azure
7
Shouts

Getting started with SQL Azure - Part 10 B: Conclusion

published 524 days, 13 hours, 1 minute ago posted by dharadhara 526 days, 13 hours, 22 minutes ago
Friday, January 13, 2012 7:23:16 AM GMT Wednesday, January 11, 2012 7:02:30 AM GMT
Aim of “Getting started with SQL Azure” series is to offer you a set of brief articles that could act as a Launchpad for your to-be wonderful journey of exploring Microsoft’s cloud based database solution i.e. SQL Azure. First summary... (more)
category: Data | clicked: 22 | comment | | source: beyondrelational.com
tags: SQL Server, SQL Azure, Azure
7
Shouts

SSIS #104 – When Row Count Transformation is invaluable

published 524 days, 13 hours, 1 minute ago posted by dharadhara 526 days, 13 hours, 21 minutes ago
Friday, January 13, 2012 7:23:16 AM GMT Wednesday, January 11, 2012 7:03:10 AM GMT
The Row Count transformation is a pretty straightforward transformation. It does the following two things: 1. It counts rows as data passes through a data flow, and 2. it stores the final count in a variable . (Note that the variable is only populated... (more)
category: Data | clicked: 8 | comment | | source: beyondrelational.com
tags: SQL Server, SSIS, BI
8
Shouts

Session Timeout in IIS 7 - Worker Process of ApplicationPool

published 522 days, 8 hours, 30 minutes ago posted by dharadhara 526 days, 13 hours, 21 minutes ago
Sunday, January 15, 2012 11:54:38 AM GMT Wednesday, January 11, 2012 7:03:44 AM GMT
Problem Recently while testing my application, I was facing problem of Session time out. By Default Session time is 20 mins and I wanted to extend it Attempts if we want to extend it we can set in web.config within System.web tag (more)
category: Web Dev | clicked: 39 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET, Session
Previous 1 2 3 4 5 6 7 8 9 10 ... 55 56 Next