Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • SQL 2008 Community Launch

    Se vc mora em Florianópolis pode participar do evento de lançamento mundial do SQL 2008 que realizamos através do www.dotnetfloripa.net o qual sou um dos coordenadores. As fotos estão disponíveis em http://www.dotnetfloripa.net/eventPhotos.aspx?id=46 . Agradeço muito a presença de todos no evento e a...
    Posted to Renato Haddad (Weblog) by renatohaddad on 11-18-2008, 12:00 AM
    Filed under: SQL
  • 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
  • Better error message please...SQL Error '...is not a recognized table hints option'

    I was getting the following error in a stored procedure that I had written. Nothing fancy in it as far as concern with using any new features of SQL 2005. Msg 321, Level 15, State 1, Line 5 "sql_handle" is not a recognized table hints option . If it is intended as a parameter to a table -valued function...
    Posted to Rachit's Blog (Weblog) by rachitp on 11-03-2008, 12:00 AM
    Filed under: SQL
  • Agility - CREATED DATE & LAST MODIFIED DATE TRIGGERS

    Normal 0 21 false false false ES-UY X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5...
    Posted to Pablo Peralta's Blog (Weblog) by pablop on 10-07-2008, 12:00 AM
    Filed under: sql, created date, trigger, last modified date, scritp
  • Getting random records from database table

    Recently, in one project i need to get random records from sql server table and i found a good way to do same. SELECT TOP <n> <column list> FROM <table> WHERE <criteria> ORDER BY NEWID() The main function is NEWID() which return GUID. Ex. Select Top 10 * From Employees Order By...
    Posted to Krunal Mevada (Weblog) by krunalm on 09-27-2008, 12:00 AM
    Filed under: SQL
  • 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
  • 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
  • SQL Not In Revisited

    I always seem to struggle with a NOT IN clause when there are more than one column to compare.  This, of course, comes up when I am trying to get records from one set that are NOT IN another set and the comparison has to be done across multiple columns.  For instance, if I want to compare table...
    Posted to Keith 'StarPilot' Barrows (Tech Blog) (Weblog) by Keith Barrows on 08-27-2008, 12:00 AM
    Filed under: SQL
  • SQL XML - TreeView

    I sometimes forget how to do an XML output formed in a tree when dealing with a single table parent/child relationship.  There is a great explanation on SQL Server Central on *how* to do this .  I am mainly capturing the link and the SQL I just generated to do this.  This query will drill...
    Posted to Keith 'StarPilot' Barrows (Tech Blog) (Weblog) by Keith Barrows on 08-25-2008, 12:00 AM
    Filed under: XML, SQL
  • Change Server Url in Email for Reporting Services

    When you schedule something to run in the Reporting Services and when the report gets emailed to the requestors, by default, in the email, you'll see http://servername/reportserver/report.... So what happens that if you are on the network (which is most likely if the reporting services is used for a...
    Posted to Rachit's Blog (Weblog) by rachitp on 08-02-2008, 12:00 AM
    Filed under: SQL, Reporting Services
Page 1 of 23 (229 items) 1 2 3 4 5 Next > ... Last »