

I can’t understand that, why Microsoft not allowing to register / create an account into the windows azure?
My personal opinion is:
“Microsoft should allow Bangladeshi user to register and use the windows azure for trial period (could be 120/160 days) to learn and understand the technologies and to closely work with Microsoft Platform. I am wondering that this year they are not allowing any BD user to register into the Azure.”
Thanks,
Md. Marufuzzaman
Hi there, I would like to share with you guys a simple transact-sql statement which will return all the dependency list of your storedProcedure. For example, you have a database name as “myDatabase”. Your database may contains numbers of procedures, functions and tables as well. To know the object dependencies we always try SQL server features, but the limitation is we will able to see only one object at a time. But this transact-sql statement will return all the dependency list as a table. So you can see all the object dependence at a time… I hope you enjoy it.
Transact-sql statement:
WITH storedPprocedures AS (
SELECT sysObjectsA.name AS tx_procedure_name
, sysObjectsB.name AS tx_table_name
, ROW_NUMBER() OVER
(
partition by sysObjectsA.name,sysObjectsB.name
ORDER BY sysObjectsA.name,sysObjectsB.name
) AS row
FROM sysdepends sysDependObject
INNER JOIN sysobjects sysObjectsA ON sysObjectsA.id=sysDependObject.id
INNER JOIN sysobjects sysObjectsB ON sysObjectsB.id=sysDependObject.depid
WHERE sysObjectsA.xtype = ‘P’)
SELECT tx_procedure_name, tx_table_name FROM storedPprocedures
WHERE row = 1
ORDER BY tx_procedure_name,tx_table_name
Thanks,
Md. Marufuzzaman
An open source template I wrote that may use for lithe weight enterprise application. i_robo_v1 follow Multi-tier architecture (often referred to as n-tier architecture) which is a client-server architecture in which, the presentation, the application processing and the data management are logically separate processes.
You can download this template (i_robo_v1) at this link.
I do a short analysis on the “Claim-based-security for ASP.NET Web APIs using DotNetOpenAuth”
(http://zamd.net/2012/05/04/claim-based-security-for-asp-net-web-apis-using-dotnetopenauth/?goback=%2Egde_4477233_member_121979238).
Few things I tried to short out are listed below:
Why I like this approach:
Why I am concern on the following scenario:
2.1. What is a Microsoft account? To access portions of the services, such as the Microsoft branded services, you will need a Microsoft account. The Microsoft account, formerly known as Windows Live ID, is the credentials you…
Table of Contents

Hello guys, last couple of years I tried to setup an organized structure where we will move forward very fast with the latest technologies without compromising product quality. That’s why I tried to create an excellent environment structure, the way of how we move with a new project , how could we delivery faster, actually the core think is to create a RAD (Rapid application development) or even it’s like component base construction environment for our organization.
From the above point of view I prepared a project flow diagram, which I would like to share with you. So that you guys can help me to make it more standard, more efficient, where I am doing wrong or where I am doing the right.
However lest go thru the steps as per diagram. Here I will discuss on how this process take place to move faster than before and complete the entire project within time.
Well at first I would like say that I will not discuss regarding the roll of the Marketing department, Management department as well as Administration section. Anyway when I start a new software development project at first I give my top priority on the client requirements. In this part I assign a project manager with a project management team and a system analyst for that particular project. This guys are involved with the client & requirement study the requirement, if any existing system already using the client then short out the limitations are.
This team actually follow the complete SDLC with proper documentation. After completing the primary analysis, the classical way is to proposed new system with the detail that the client want in proper document. Here I add a new steps which is project prototyping, this is actually a graphical representation of the new system with sample data.
The purpose of that is to make sure the client that we got the actual scenario of what client wants? Is the prototype is correct or need to change anything. If so we make the changes and again give a demonstration of the prototype again it’s just a cyclic process until the client approve that prototype and go for an agreement officially.
I think this part is the heart of any software development project cycle; In this section as an architect at first a draw a complete picture of the full project, there are lots of standard methodologies are available for example, studying software requirement specification (SRS), writing use case, data flow diagram, using UML etc…. Well off course I follow all of this but I would also include another step which I call “Human Activity As A Software” (HAAS).
Lets to make it more clear on this, HAAS is nothing but just a diagram, it represent the each & every interaction between two or more persons which we are going to automate. From my experiences I found this diagram really take a very good impact on the developer while design the software algorithm, writing code etc. it’s like a developer is developing a system which will act like HAAS diagram, while writing code this diagram helps program to draw a visual picture and it represent of human behavior in a visual manner.
Well, let move to understand few more interesting thinks; Okay I hope you guys understand / got a scenario up to requirement analysis, steps of standard SDLC. So now we have the following items in hand to move forward:
Great, I really very much concern on the using of technologies for any type of software development project. Because of that I sort out what are the related development tools required to develop this project. You may ask, there is nothing to short out… If the target platform is Microsoft and application type may be web application, standard win32Form application, web services… etc., then generally go for Microsoft Visual Studio .Net (Framework 4) , Eclipse, NetBean etc., as IDE for the project and development language could be C#, Visual Basic, F# or something else and for the database platform it’s simple either Microsoft SQL Server 2008, Oracle 11g, Microsoft Access, DB2 etc.,
Yes I off-course I also agree with you, I also go for the same but do a little analysis on the requirement and all the development tools. At first I would prefer using tiny wait open source api, I don’t want to kill a mosquito using my all the accessories which I traditionally use to hunt a big tiger….. ha ha ha…………. It good to use lite and efficient tools.
So now I make my decision & select all the tools which will be use for that project development, & here I hate to change tools / any third party api at the middle stage in development project.
Well, I wish I could complete all the parts & would love to create this environment in my current organization “Dhrupadi Techno Consortium Ltd (DTCL)”
The purpose of this is not to share something new, I hope you guys will go thru in detail & and I will be glad for your any valuable suggestion.