Home / ASP.NET Weblogs
All Tags » .NET » SQL (RSS)

Browse by Tags

Related Posts

  • Moving Community Server to the Cloud

    Next pet project is to move my blog on Community Server to the Cloud. I spend too long making sure my database size does not go over 500 MB, the size limit on my hoster. So once every 3 months I have to do some clean up of the database: DELETE FROM cs_statistics_Site DELETE FROM cs_Visits DELETE FROM...
    Posted to Albert Pascual ASP.NET Blog (Weblog) by albertpascual on 11-03-2008, 12:00 AM
    Filed under: C#, ASP.NET, .NET, Community Server, SQL, Telligent
  • Entity Framework: Right Problem, Wrong Place

    I was listening to the recent .NET rocks episode about the Entity Framework advisory council and it was interesting to hear the team's point of view and the problems they are trying to solve with the Entity Framework. They have nice goals, but there is a fundamental problem here that some of the original...
    Posted to Jesse Ezell Blog (Weblog) by Jesse Ezell on 08-28-2008, 12:00 AM
    Filed under: .NET, Entity Framework, SQL
  • what I miss in LINQdatasource

    ASP.NET SQLDatasource control was for me a super productive tool in the past. There are some small features missing like a more elegant data paging. ASP.NET 3.5 bring a new control LinqDatasource which have great support for data paging . So I tried  to create a rss feed with LINQtoSQL and LinqDatasource...
    Posted to Hannes Preishuber (Weblog) by preishuber on 06-05-2008, 12:00 AM
    Filed under: ASP.NET, .NET, Sql
  • Zip up those bak files

    This is something I have come across during our SQL migration which I didn't even think about. You can zip up your bak files and save considerable hard drive space. We have a 14 gig database which happily compresses down to 2 gig. With hard drives coming down in price, you may think why bother. Well...
    Posted to Garry Pilkington (Weblog) by capgpilk on 02-26-2008, 12:00 AM
    Filed under: C#, .NET, SQL, Zip
  • AJAX AutoComplete with DataSet

    /// <summary> /// This webservice is used with AJAX AutoComplete Extender /// to populate possible car makes for textbox on Sell Your Car form /// </summary> [ ScriptService ()] [ WebService (Namespace = "http://tempuri.org/" )] [ WebServiceBinding (ConformsTo = WsiProfiles .BasicProfile1_1...
    Posted to Object reference not set to an instance of an object (Weblog) by funky_rus on 02-25-2008, 12:00 AM
    Filed under: ASP .NET, C#, .NET, SQL, AutoCompleteExtender, DataSet
  • Different SQL between VB.NET and C# LINQ to SQL SOLVED!!

    Hi All, Following my previous post I have solved this issue. Somehow accidently I discovered that if the field has allow nulls set on it VB.NET will add the Where Coalesce in your query hence in my case slowing it down dramatically. It seems that C# does not do this. So finally I have my VB.NET sql comming...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 02-12-2008, 12:00 AM
    Filed under: ASP.NET, .NET, .NET 3.5, SQL, LINQ, C#, VB.NET
  • Different SQL between C# and vb.net using LINQ to SQL causes performance issues

    Hi All, I am currently working on a project and we are using VB.NET, I am using LINQ to SQL for my data access. I have just implemented my search query and thought I would check the generated SQL's execution plan and found that the subtree cost was about 7.3. I know that I get different SQL between C#...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 02-07-2008, 12:00 AM
    Filed under: ASP.NET, .NET, MICROSOFT, .NET 3.5, SQL, LINQ, C#, VB.NET
  • Options for Database access outside of ADO.Net

    In the world of .NET programming, ADO.NET has become the De Facto standard for accessing database of all types (relational or otherwise). The purists among us will be quick to point out that ADO.Net should be the only option and that as developers we shouldn’t even be thinking about bypassing ADO.NET...
    Posted to Jaycent Drysdale (Weblog) by jaycent on 01-29-2008, 12:00 AM
    Filed under: ASP.Net, C#, .NET, SQL, LINQ
  • Gotcha with linq and paging

    Hey All, Had a query which I was paging on the front end. I knew that a certain product was meant to be in my display but could not see it. But on page 2 a product would repeat itself. Odd, got into profiler and looked at the queries. The first page would get a select top 9 which would not do any orderby...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 01-22-2008, 12:00 AM
    Filed under: ASP.NET, .NET, MICROSOFT, .NET 3.5, SQL, LINQ, C#
  • Handling Default Values With LINQ to SQL

    Hi All, Have run into some issues with using default values in my SQL database with LINQ. I set AutoGenerated in the LINQ Designer to true which made use of my default values but this did not let me update this manually as it would throw an exception. I got a good suggestion from Young Joo to keep autogenerated...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 01-08-2008, 12:00 AM
    Filed under: ASP.NET, .NET, MICROSOFT, .NET 3.5, SQL, LINQ, C#
Page 1 of 6 (59 items) 1 2 3 4 5 Next > ... Last »