Ways to deployment: XCOPY, Automated setup application Use XCOPY only when there is no external dependencies other than .Net framework. And it is guaranteed that .Net framework is installed in all the target machines. Also, make sure the application directory contains all the files. Command example: XCOPY d:myApplication c:deployedApplication /s — /s indicates subdirectories will …
Category: FromSitesTree.com
Mar 26
How to optimize query response time? #Root #By Sayed Ahmed
Check that only the required columns are selected [in select statements] Check that the right types of joins are used Check that if re-ordering the joins will help or not Check the indexes of the tables [is indexing done on the right columns] Check that in joins you used the indexed columns in the join …
Mar 26
Securing MySQL Database #Root #By Sayed Ahmed
Mainly deals with TestDb After installing mysql, we will need to remove test database and associated users and their permissions. We will need to use mysql database to remove associated users and permission. — DROP DATABASE test; — SELECT db.Host, db.Db, db.User, db.Select_priv -> FROM db WHERE (db.DB = “vworksDB”); From: http://sitestree.com/?p=3661 Categories:Root, By Sayed …
Mar 26
Lesson 1: How to Develop a Customer Ticket Management System in Vb.net (Lesson 1 Focus: Overview) #Root #By Sayed Ahmed
I will demonstrate step by step software development in different platforms using different approaches. Platform for this lesson is: VB.net and MS SQL Server. I will provide short-notes and video trainings incrementally. I will update the notes time to time. Project Focus: We assumed as part of the project management process of an imaginary company, …
Mar 26
Some Areas of Study in Business #Root #By Sayed Ahmed
Administrative Support Business Analysis Business Law Communication Consulting Skills Customer Service e-Learning Finance and Accounting Foundation Skills Human Resources Industry Foundations Knowledge Management Leadership Management Marketing Operations Personal Development Program/Portfolio Management Project Management Sales Strategic Planning Team Building Logistics Supply Chain Management From: http://sitestree.com/?p=3665 Categories:Root, By Sayed AhmedTags: Post Data:2016-09-15 14:19:26 Shop Online: https://www.ShopForSoul.com/ (Big …
Mar 26
On Requirements Management and Tools #Root #By Sayed Ahmed
The Subject: Better Requirements Definition Management is Better for Business http://www.methodsandtools.com/archive/archive.php?id=107 All You Need to Know About Requirements Management http://www.elementool.com/blog/?p=457 Why do I need a Requirements Management tool? http://blog.visuresolutions.com/2012/02/why-do-i-need-requirements-management.html Selected Topics in Software Engineering: Software Quality Verification and Forecasting http://www.iste.uni-stuttgart.de/rss/teaching/ws-20152016/s-sqvf.html Tools: Top Requirements Management Software Products http://www.capterra.com/requirements-management-software/ List …
Mar 26
Creating Custom Tags in JSP #Root #By Sayed Ahmed
By Sayed, January 13th, 2008 [use large font in IE/Firefox] How to create custom tags in JSP? You can create custom tags in JSP. Steps: —– 1. You have to create a Java file that will define the operation of the custom tag 2. For the Java file, you have to extend javax.servlet.jsp.tagext.BodyTagSupport class 3. …
Mar 26
Matlab Overview: What is Matlab #Root #By Sayed Ahmed
Matlab is used for: Math and computation, Algorithm development, Data acquisition, Modeling, simulation, and prototyping, Data analysis, exploration, and visualization, Scientific and engineering graphics, Application development, including graphical user interface building. From: http://sitestree.com/?p=3647 Categories:Root, By Sayed AhmedTags: Post Data:2016-09-15 14:20:51 Shop Online: https://www.ShopForSoul.com/ (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com In Bengali: http://Bangla.SaLearningSchool.com http://SitesTree.com …
Mar 26
More CSS Layouts #Root #By Sayed Ahmed
Three Column layout with header and footer: The CSS html, body { margin: 0; padding: 0; } #header { width: 800px; float: left; } #maincontainer { width: 800px; float: left; } #nav { width: 200px; float: left; } #main { float: right; width: 600px; } #footer { width: 800px; float: left; } The XHTML <!DOCTYPE …
Mar 26
Should you learn Websphere? #Root #By Sayed Ahmed
Yes, you can. Why? IBM Websphere products are used by many reputed enterprises/companies as their software development platforms. Just to mention Websphere is really the name of a group of enterprise software development tools from IBM where Websphere application server is the central tool. The platform is J2EE centric. If you plan to build your …
