Feeds:
Posts
Comments

Posts Tagged ‘DNN Deployment’

Well, I m looking around for an article to upgrade existing DNN module, and I found this, It covered how to package your DNN module which you want to protect your source code by releasing the DLL only.
In addition, it also covered “upgrade your DNN module” too, which I m looking for.
Enjoy Reading. Here the [...]

Read Full Post »

Objective to create DNN table & SP scripts is ease for deployment.
Here some very simple example,
CREATE TABLE {databaseOwner}[{objectQualifier}tbl_XYZ](
[xyzId] [int] IDENTITY(1,1) NOT NULL,
[xyzName] [varchar] (100) NOT NULL,
) ON [PRIMARY]
if exists (select * from dbo.sysobjects where id = object_id(N’{databaseOwner}[{objectQualifier}tbl_XYZ]‘) and OBJECTPROPERTY(id, N’IsProcedure’) = 1)
drop procedure {databaseOwner}{objectQualifier}tbl_XYZ_add
GO

Please take note on those red highlighted, you must included this [...]

Read Full Post »