GeekArticles
FAQ
Mobile.NET FAQKeywords to search .NET-related Knowledge Base articles
Author: support.microsoft.com |
Published: 21st Aug 2005 |
Visited: 229 times |
Add CommentFiled in: Mobile NET FAQThe Microsoft Knowledge Base is categorized by keywords. The keywords help to refine the search criteria. This article lists the keywords that are used as metadata for .NET related Knowledge Base articles. The following .NET-related areas are...
Read Article Sponsored Links
Related Articles
• Using OpenSearch to Create a Multi-Search Form This article shows how you can build a search form that will search a number of different sources without the need for a different textbox for each. It even incorporates some basic OpenSearch functionality in order to allow the easy addition of new search providers.Visit our new .NET 2.0 sect ...
• Update base on join view fails with ora 1779 Hi,
Here is the problem
update (select t1.* from T1,T2 where t1.col=T2.col) t
set col4='toto'
ora-1779
even if i try /*+bypass_ujvc*/ in my update
update /*+bypass_ujvc*/ (select t1.* from T1,T2 where t1.col=T2.col) t
set col4='toto' ...