Home / ASP.NET Weblogs
All Tags » C# » 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
  • HTML Comments, Other Comments and Some VS Tips

    I just found out something really weird about HTML comments. Apparently, according to standards, you can't do this: <!-- comment ------------------------ --> That is, you can't put two or more ‘-‘s inside a comment. It works as expected in IE7, but it breaks down horribly in FireFox. FireFox simply...
    Posted to HeartattacK (Weblog) by HeartattacK on 09-02-2008, 12:00 AM
    Filed under: Visual Studio, ASP.NET, C#, SQL, VB.NET
  • CRM 4 FilteredViews, LINQ & WCF

    We decided to use FilteredViews instead of FetchXml for an internal project, but we ran into couple of problems. You can't access data from the FilteredViews using ASP.NET since it runs under NETWORK SERVICE (by default (app pool)), FilteredViews filter the data by Users. If you set the <identity>...
    Posted to Kids don't try this at home! (Weblog) by gperera on 07-20-2008, 12:00 AM
    Filed under: C#, ASP.NET, WCF, LINQ, Dynamics CRM, 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 3 (28 items) 1 2 3 Next >