Scraps from various sources and my own writings on Generative AI, AGI, Digital, Disruption, Agile, Scrum, Kanban, Scaled Agile, XP, TDD, FDD, DevOps, Design Thinking, etc.
Page Hits
Friday, December 11, 2009
Remote Desktop Services / Terminal Services
Source: Wikipedia...
Wednesday, October 07, 2009
Create sample database
Creating a sample database
For information about configuring vendor databases, see the IBM Rational ClearQuest and ClearQuest MultiSite Installation and Upgrade Guide.
- Start the Maintenance Tool. Then click Schema Repository > Create.
- In the Existing Connections pane, enter a name for the schema repository connection in the highlighted item and press Enter.    By default, the first connection name is 7.0.0. You can rename the connection later. 
- In the Schema Repository Properties area, select a database vendor and enter the required properties. The properties for each database are different. - If you select Microsoft SQL Server, Oracle DBMS, or IBM DB2, enter the physical database name of one of the empty databases that you created with the vendor database tools.When you create a DB2 schema repository, the User Name property must be a user identity that has database administrator authority for the DB2 database. 
- If you select Microsoft Access, enter a physical database name; the Maintenance Tool creates a new database with that name.
 
- If you select Microsoft SQL Server, Oracle DBMS, or IBM DB2, enter the physical database name of one of the empty databases that you created with the vendor database tools.
- Click Next.
- In the ClearQuest Data Code Page window, select the data code page to use with the new schema repository. You can choose any supported data code page supported by Rational ClearQuest. The default data code page is the one associated with the user-interface language for the operating system on which the Maintenance Tool is running, if that code page is supported. If that code page is not supported, the default data code page is ASCII.
- Click Create sample database.
Schema Repository
Creating a schema repository
- Start the Maintenance Tool. Then click Schema Repository > Create.
- In the Existing Connections pane, enter a name for the schema repository connection in the highlighted item and press Enter.    By default, the first connection name is 7.0.0. You can rename the connection later. 
- In the Schema Repository Properties area, select a database vendor and enter the required properties. The properties for each database are different. - If you select Microsoft SQL Server, Oracle DBMS, or IBM DB2, enter the physical database name of one of the empty databases that you created with the vendor database tools.When you create a DB2 schema repository, the User Name property must be a user identity that has database administrator authority for the DB2 database. 
- If you select Microsoft Access, enter a physical database name; the Maintenance Tool creates a new database with that name.
 
- If you select Microsoft SQL Server, Oracle DBMS, or IBM DB2, enter the physical database name of one of the empty databases that you created with the vendor database tools.
- Click Next.
- In the ClearQuest Data Code Page window, select the data code page to use with the new schema repository. You can choose any supported data code page supported by Rational ClearQuest. The default data code page is the one associated with the user-interface language for the operating system on which the Maintenance Tool is running, if that code page is supported. If that code page is not supported, the default data code page is ASCII.
- You have the option of creating a sample user database.
- Click Finish.
Shemas and Schema Repository
Schemas and schema repositories
A Rational ClearQuest schema is a complete description of the process model for all the components of a user database. This includes a description of states and actions of the model, the structure of the data that can be stored about the individual component, hook code or scripts that can be used to implement business rules, and the forms and reports used to view and input information about the component. Rational ClearQuest provides out of the box-schemas that can be customized for a client installation.
A schema is a pattern or blueprint for Rational ClearQuest user databases. When you create a user database to hold records, the database follows the blueprint defined in a schema. However, a schema is not a database itself; it does not hold any records about change requests, and it does not change when users add or modify records in the user database.
Rational ClearQuest stores schemas in the schema repository. The schema repository is the master database that contains metadata about the user databases. It does not contain user data.
A schema repository can store multiple schemas, for example, one schema for defect change requests and another schema for feature enhancement change requests. [Source:IBM]
Tuesday, August 25, 2009
Choose www or no www
Introduction
When you write a URL for your website, it can be written with or without "www," like this:
§ http://www.webhostingtalk.com/wiki
§ http://webhostingtalk.com/wiki
Should you include "www" with your URL?
The same and not the same
With most websites, the URLs with and without "www" in them will point to the same site. However, you can specify each URL (with and without "www") to point to a different IP address by modifying your DNS A record.
Some search engines see the above two URLs as two different URLs. Each URL can have a different PageRank, and by using both, you're diluting the PR for each URL.
For PR and SEO purposes, it's preferable to choose one version or the other to use. There are reasons for each choice. Which one you choose depends mostly on personal preference.
Reasons to include www
- It helps identify a URL as a web address, especially if the domain extension is other than a .com one.
- Many people will type it in anyway.
- For some people, URLs look more visually appealing with them.
Reasons not to include www
§  It makes the URL longer, especially if the URL is for a subdomain.
§  It's unnecessary.
§  For some people, URLs look cleaner without them.
How to redirect from one to the other using .htaccess
If your site is on an Apache server, you can choose to have only the version with or without "www" appear. One will direct to the other. 
Add one of the following to your .htaccess file after replacing "example.com" with your domain. The "RewriteEngine on" first line activates mod_rewrite.
To redirect to the URL with www
RewriteEngine On
rewriteCond %{HTTP_HOST} ^example.com [NC]
rewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
To redirect to the URL without www
RewriteEngine on
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST}  ^www.(.+)$ [NC]
RewriteRule ^/(.*) http://%1/$1 [L,R=301]
If we already have automation, what's the need for Agents?
“Automation” and “agent” sound similar — but they solve very different classes of problems. Automation = Fixed Instruction → Fixed Outcome ...
- 
Requirements Analysis -- Business requirements document or business requirements specification System Design -- Systems requireme...
 
 
 
