September 2005 - Posts

Auto-Generate Template or Skeleton of an Insert Procedure of a SQL Server Table
Published Mon, Sep 19 2005 20:01 | abu
DROP procedure InsertProc GO CREATE procedure InsertProc ( @tablename varchar(100)) as declare @cname varchar(100),@First int, @strAllColumns varchar(5000),@strAllColumnsVal varchar(5000), @strParam varchar(5000), @strAllParams varchar(1000), @length...
Filed under:
Describing the Table in Simple Format - Oracle guys are habituated to get the similer type output through 'desc' command
Published Mon, Sep 19 2005 11:15 | abu
Use Northwind Go create procedure des(@tablename varchar(100)) as select name,(select max(name) from systypes where xtype=sc.xtype) datatype, length,prec,scale,case isnullable when 1 then 'Y' when 0 then 'N' else 'X' end nullable...
Filed under:
VS.NET supported DSL for Modeling Tool
Published Fri, Sep 16 2005 19:02 | abu
I found the following resource about DSL is very useful. Using the Microsoft DSL tools you can create your own designer, integrated into Visual Studio, for a visual domain-specific language. The tools help you define the domain-specific language and generate...
Filed under:
Real Challenge to the architect for architecting and designing for FUTURE application development’s method.
Published Thu, Sep 15 2005 22:32 | abu
Now “Software Factory” is the “Buzzword” To the architect real challenge to make “Platform Independent” auto generated coding tools which will be domain specific. How extent is this possible? Here things are required...
Filed under: ,
"Could not access 'CDO.Message' object" - Error
Published Thu, Sep 15 2005 1:05 | abu
In a website when I mentioned the SmtpMail.SmtpServer= “ServerIP” it was showing the following error: “EXCEPTION Could not access 'CDO.Message' object.” When I remove, then this was working fine. This was showing the InnerException...
Filed under: