Speeple News Search

Sign Up! | Tags | Domains | Statistics | Options | Advanced Search

Tags » Sql Server

Related tags: asp net, database, events, microsoft, security, sql server 2008, technet, visual studio, windows server, windows server 2008

  1. LessThanDot?

    asp.net » Mark Smith - Sep 29, 2008

    What have I been up to? It's been a while since I last wrote a blog on here, so what have I been up to? Well, it's been a very busy time for me as along with the birth of our first child, I've been working on a few

    Also tagged: asp net, community news, general software development, net faq

  2. SQL Server 2005 - Missing Ranges

    asp.net » Mark Smith - Sep 29, 2008

    I recently had a situation where I needed to highlight the ids in a given range which were out of sequence and not part of a range (i.e. 1,2,3,4,6, would show that 5 was missing). Fortunately, I found that this was

  3. Windows Web Server 2008 and SQL Server 2005

    asp.net » Hoster Poster - Sep 29, 2008

    If you haven't heard, the new Web SKU is a special, low-priced version of Windows that is focused exclusively on Internet-based Web serving. We've added a lot of new features and support for hardware compared to the

    Also tagged: iis

  4. Deploying RDLC files in local mode for ASP.NET applications

    asp.net » Stephen Songer - Sep 29, 2008

    Ran into problems trying to deploy my first web application to use a SQL Server Reporting Services report. I created a RDLC file and bound my report viewer control to an object data source. Worked fine on my local

    Also tagged: asp net

  5. Fix for SQL Server 2005 Performance Dashboard Reports

    asp.net » Stephen Songer - Sep 29, 2008

    Got the performance reports up and running and everything seemed good. Then I started getting "Difference of two datetime columns caused overflow at runtime." errors when trying to run the reports. Turns out it's a

  6. SQL Server 2005 Performance Dashboard Reports

    asp.net » Stephen Songer - Sep 29, 2008

    Found a niffy little tool for some basic SQL Server reporting. Microsoft has some dashboard reports that work with SQL Server 2005 SP2. You can download it here

  7. Configure SQL Server Agent to use database mail

    asp.net » Stephen Songer - Sep 29, 2008

    Found out that my database maintenance plan had failed the past several days and wondered why I had not received email that the job failed. When I checked the database error log I found the following error: An attempt

  8. Common Table Expressions (CTE)

    asp.net » Stephen Songer - Sep 29, 2008

    Discovered the power of common table expressions today. I needed to create an hierarchy of GL accounts. My table was an adjancey list which made the CTE very easy. CTEs are new to SQL Server 2005. WITH

  9. Cross Tab Queries

    asp.net » Stephen Songer - Sep 29, 2008

    Sometimes I've needed to do "cross tab" queries -- a throwback to a built-in MS Access query type. In SQL Server 2005 there's a built in way to do it using the pivot function. Very easy and very useful

  10. Converting Binary to Text in SQL Server

    asp.net » Stephen Songer - Sep 29, 2008

    Some databases store longer text fields as binary. To retrieve the text in a varchar field, do the following: CAST(CONVERT(varbinary(max),velive.dbo.part_binary.bits) AS varchar(max)) velive.dbo.part_binary = Table

 4  5  6  7  8  9    11  12  13  14