Terry's WebLog

Your potential, our passion

August 2004 - Posts

How to Temporarily Increase the Exchange 2000 16-Gigabyte Database Size Limit

http://support.microsoft.com/?id=813051

  • Individual databases are limited to a maximum size of 16 gigabytes.

    Note Individual database size is the combined size of the .edb file and the .stm file for that database.
  • Posted: Aug 31 2004, 11:03 PM by freeswing | with no comments
    Filed under:
    What is Incident?

    any event which is not part of the standard operation of a service and which causes, or may cause, an interruption to, or a reduction in, the quality of that service

     

    Posted: Aug 30 2004, 12:17 AM by freeswing | with no comments
    Filed under:
    some difference between c# and vb.net

    Feature

    Visual Basic .NET

    Visual C# .NET

    Case sensitive

    Not case sensitive:

    response.write("Yo") ' OK

    Case sensitive:

    response.write("Yo"); // Error Response.Write("Yo"); // OK

    Functional blocks

    Use beginning and ending statements to declare functional blocks of code:

    Sub Show(strX as String)   Response.Write(strX) End Sub

    Use braces to declare functional blocks of code:

    void Show (string strX)
    {
    Response.Write(strX);
    }

    Type conversion

    Implicit type conversions are permitted by default:

    Dim intX As Integer
    intX = 3.14  ' Permitted

    You can limit conversions by including an Option Strict On statement at the beginning of modules.

    Type conversions are performed explicitly by casts:

    int intX;
    intX = 3.14; // Error!
    intX = (int)3.14; //Cast, OK.

    Or, use type conversion methods:

    string strX; strX = intX.ToString();

    Arrays

    Array elements are specified using parentheses:

    arrFruit(1) = "Apple"

    Array elements are specified using square brackets:

    arrFruit[1] = "Apple";

    Methods

    You can omit parentheses after method names if arguments are omitted:

    strX = objX.ToString

    You must include parentheses after all methods:

    strX = objX.ToString();

    Statement termination

    Statements are terminated by carriage return:

    Response.Write("Hello")

    Statements are terminated by the semicolon (;):

    Response.Write("Hello");

    Statement continuation

    Statements are continued using the underscore (_):

    intX = System.Math.Pi * _   intRadius

    Statements continue until the semicolon (;) and can span multiple lines if needed:

    intX = System.Math.PI *    intRadius;

    String operator

    Use the ampersand (&) or plus sign (+) to join strings:

    strFruit = "Apples" & _   " Oranges"

    Use the plus sign (+) to join strings:

    strFruit = "Apples" +    " Oranges";

    Comparison operators

    Use =, >, <, >=, <=, <> to compare values:

    If intX >= 5 Then

    Use ==, >, <, >=, <=, != to compare values:

    if (intX >= 5)

    Negation

    Use the Not keyword to express logical negation:

    If Not IsPostBack Then

    Use the ! operator to express logical negation:

    if (!IsPostBack)

    Object comparison

    Use the Is keyword to compare object variables:

    If objX Is objY Then

    Use == to compare object variables:

    if (objX == objY)

    Object existence

    Use the Nothing keyword or the IsNothing function to check if an object exists:

    If IsNothing(objX) Then

    Use the null keyword to check if an object exists:

    if (objX == null)

    Posted: Aug 26 2004, 05:22 PM by freeswing | with 7 comment(s)
    Filed under:
    The maximum limit that is hard-coded in Windows SharePoint Services
    Windows SharePoint Services users cannot delete a folder, a document library, a site, or a site collection if either of the following conditions is true:
    • The folder, the document library, the site, or the site collection contains over 40,000 subfolders and documents.
    • The size of the folder, the document library, the site, or the site collection is larger than (but not equal to) 2 gigabytes (GB).
    Windows SharePoint Services users cannot rename a folder, document library, site, or site collection if either of the following conditions is true:
    • The folder, the document library, the site, or the site collection contains over 10,000 subfolders and documents.
    • The size of the folder, the document library, the site, or the site collection is larger than (but not equal to) 500 megabytes (MB).
    The calculation of the maximum number of objects that a folder, a document library, a site, or a site collection can contain includes the root folder, the subfolders, the documents that are contained in the root folder, and the documents that are contained in the subfolders.

    For example, a document library that contains 9,993 documents exceeds the maximum limit of 10,000 items. The number of items that is calculated for the document library is actually 10,001 because the number of items includes the number of documents (9993), the number of files in the Forms folder (6), the forms folder (1), and the root folder of the document library (1).
    Posted: Aug 24 2004, 11:26 AM by freeswing | with 6 comment(s)
    Filed under:
    SMTP filter for Exchange and ISA

    http://www.isaserver.org/tutorials/Configuring_the_SMTP_Message_Screener.html

    http://www.microsoft.com/technet/Security/prodtech/isa/isafp1/smtpfc.mspx

    Posted: Aug 20 2004, 11:25 AM by freeswing | with no comments
    Filed under:
    Smartphone-3 review
    http://www.coolsmartphone.com/index.php?option=articles&task=viewarticle&artid=339
    Posted: Aug 20 2004, 10:45 AM by freeswing | with no comments
    Filed under:
    How to Enable Translating Client Source Address in Server Publishing
    http://support.microsoft.com/?id=311777&ln=us
    Posted: Aug 19 2004, 10:42 AM by freeswing | with no comments
    Filed under:
    Procedures, therefore, should support the culture and not govern or influence it.

    "...Without exception, the dominance and coherence of culture proved to be an essential quality of the excellent companies. Moreover, the stronger the culture and the more it was directed toward the market place, the less need was there for policy manuals, organisation charts, or detailed procedures and rules ...people ... know what they are supposed to do in most situations because the handful of guiding values is crystal clear"

    --from In Search of Excellence, a study of the best run American companies

    Posted: Aug 18 2004, 12:31 AM by freeswing | with 1 comment(s)
    Filed under:
    Architecture Changes in Windows SharePoint Services and SharePoint Portal Server 2003

    http://www.microsoft.com/technet/prodtechnol/office/sps2003/deploy/spst2003.mspx#XSLTsection123121120120

     

     

    Posted: Aug 13 2004, 03:44 PM by freeswing | with no comments
    Filed under:
    LB and ISA

    Configuring Fault Tolerance and Load Balancing for Windows 2003 ISA Firewall/VPN Servers

    http://www.isaserver.org/tutorials/Configuring_Fault_Tolerance_and_Load_Balancing_for_Windows_2003_ISA_FirewallVPN_Servers.html

    Issues in ISA Server Fault Tolerance and Load Balancing

    http://www.isaserver.org/tutorials/haslideshow.html

    Info on NLB "workaround" for ISA 2004 SE

    http://forums.isaserver.org/ultimatebb.cgi?ubb=get_topic;f=26;t=000033

     

    Posted: Aug 08 2004, 02:38 AM by freeswing | with no comments
    Filed under:
    More Posts Next page »