Database read and write large

Hello,
I'm using Exchange 2010 in my company with around 200 mailbox.
The exchange database are stored in our SAN network, drive is mount by Iscsi on the 2008 r2 sp1
Problem is, the network traffic is huge. We have one link special for this server (thats a virtual server on Hyper-V) and the network link is always at 70 Mbps and goes sometimes up to 130 Mbps (10 Gb/s link)
I do not know why the link is use so much and i try to know why ?
Used Exmon to see mailbox of each user, nothing special appear.
Thanks for your help.

Hi,
There are 2 database, one with like 140 users, and the other one with 60 user.
Role installed on my server : IIS, AD, File Services. (server is not a domain controler).
[PS] C:\Windows\system32>get-ThrottlingPolicy
RunspaceId                                : *An ID*
IsDefault                                 : True
AnonymousMaxConcurrency                   : 1
AnonymousPercentTimeInAD                  :
AnonymousPercentTimeInCAS                 :
AnonymousPercentTimeInMailboxRPC          :
EASMaxConcurrency                         : 10
EASPercentTimeInAD                        :
EASPercentTimeInCAS                       :
EASPercentTimeInMailboxRPC                :
EASMaxDevices                             : 10
EASMaxDeviceDeletesPerMonth               :
EWSMaxConcurrency                         : 10
EWSPercentTimeInAD                        : 50
EWSPercentTimeInCAS                       : 90
EWSPercentTimeInMailboxRPC                : 60
EWSMaxSubscriptions                       : 5000
EWSFastSearchTimeoutInSeconds             : 60
EWSFindCountLimit                         : 1000
IMAPMaxConcurrency                        :
IMAPPercentTimeInAD                       :
IMAPPercentTimeInCAS                      :
IMAPPercentTimeInMailboxRPC               :
OWAMaxConcurrency                         : 5
OWAPercentTimeInAD                        : 30
OWAPercentTimeInCAS                       : 150
OWAPercentTimeInMailboxRPC                : 150
POPMaxConcurrency                         : 20
POPPercentTimeInAD                        :
POPPercentTimeInCAS                       :
POPPercentTimeInMailboxRPC                :
PowerShellMaxConcurrency                  : 18
PowerShellMaxTenantConcurrency            :
PowerShellMaxCmdlets                      :
PowerShellMaxCmdletsTimePeriod            :
ExchangeMaxCmdlets                        :
PowerShellMaxCmdletQueueDepth             :
PowerShellMaxDestructiveCmdlets           :
PowerShellMaxDestructiveCmdletsTimePeriod :
RCAMaxConcurrency                         : 20
RCAPercentTimeInAD                        : 5
RCAPercentTimeInCAS                       : 205
RCAPercentTimeInMailboxRPC                : 200
CPAMaxConcurrency                         : 20
CPAPercentTimeInCAS                       : 205
CPAPercentTimeInMailboxRPC                : 200
MessageRateLimit                          :
RecipientRateLimit                        :
ForwardeeLimit                            :
CPUStartPercent                           : 75
AdminDisplayName                          :
ExchangeVersion                           : 0.10 (14.0.100.0)
Name                                      : DefaultThrottlingPolicy_5fa5b9e4-a13b-4cf6-93a9-1eef6db05a03
DistinguishedName                         : CN=DefaultThrottlingPolicy_5fa5b9e4-a13b-4cf6-93a9-1eef6db05a03,CN=Global S
                                            ettings,CN=*DOMAIN*,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=*DOMAIN*
Identity                                  : DefaultThrottlingPolicy_5fa5b9e4-a13b-4cf6-93a9-1eef6db05a03
Guid                                      : 6aa37e30-cac2-40fb-8d42-acafdcebb54e
ObjectCategory                            : *DOMAIN*/Configuration/Schema/ms-Exch-Throttling-Policy
ObjectClass                               : {top, msExchGenericPolicy, msExchThrottlingPolicy}
WhenChanged                               : 07/07/2011 14:26:28
WhenCreated                               : 07/07/2011 14:26:22
WhenChangedUTC                            : 07/07/2011 12:26:28
WhenCreatedUTC                            : 07/07/2011 12:26:22
OrganizationId                            :
OriginatingServer                         : *DOMAIN CONTROLER*.*DOMAIN*
IsValid                                   : True

Similar Messages

  • Oracle database read and write?

    I want to see on the basis of the Oracle database table to read and write rates.How can I see

    A table can exists across multiple tablespaces. A tablespace can consists of several data files. Data files can be across multiple ASM diskgroups. An ASM diskgroup can consists of multiple LUNs. A LUN can comprise of several physical disks on the storage system.
    So what EXACTLY is the problem?
    What will a magic metric of "20 writes/25 reads" on the EMP table tell you? What would this mean and how would these numbers be applied to make the system better?
    In other words - you have come up with a solution that needs write/read rate on a table. You have not told us what problem this solution of yours will address. We need to know the problem - as a solution is only ever as good as the accuracy and detail of the problem description.

  • Best Practice to Atomic Read and Write a Field In Database

    I am from Java Desktop Application background. May I know what is the best practice in J2EE, to atomic read and write a field in database. Currently, here is what I did
    // In Servlet.
    synchronized(private_static_final_object)
        int counter = read_counter_from_database();
        counter++;
        write_counter_back_to_database(counter);
    }However, I suspect the above method will work all the time.
    As my observation is that, if I have several web request at the same time, I am executing code within single instance of servlet, using different thread. The above method shall work, as different thread web request, are all referring to same "private_static_final_object"
    However, my guess is "single instance of servlet" is not guarantee. As after some time span, the previous instance of servlet may destroy, with another new instance of servlet being created.
    I also came across [http://code.google.com/appengine/docs/java/datastore/transactions.html|http://code.google.com/appengine/docs/java/datastore/transactions.html] in JDO. I am not sure whether they are going to solve the problem.
    // In Servlet.
    Transaction tx = pm.currentTransaction();
    tx.begin();
        int counter = read_counter_from_database();  // Line 1
        counter++;                                                  // Line 2
        write_counter_back_to_database(counter);    // Line 3
    tx.commit();Is the code guarantee only when Thread A finish execute Line 1 till Line 3 atomically, only Thread B can continue to execute Line 1 till Line 3 atomically?
    As I do not wish the following situation happen.
    (1) Thread A read counter from Database as 0
    (2) Thread A increment counter to 1
    (3) Thread B read counter from Database as 0
    (4) Thread A write counter as 1 to database
    (5) Thread B increment counter to 1
    (6) Thread B write counter as 1 to database
    What I wish is
    (1) Thread A read counter from Database as 0
    (2) Thread A increment counter to 1
    (4) Thread A write counter as 1 to database
    (3) Thread B read counter from Database as 1
    (5) Thread B increment counter to 2
    (6) Thread B write counter as 2 to database
    Thanks you.
    Edited by: yccheok on Oct 27, 2009 8:39 PM

    This is my understanding of the issue (you should research it further on you own to get a better understanding):
    I suggest you use local variables (ie, defined within a function), and keep away from static variables. Those local variables are thread safe. If you call functions within functions, its still thread safe. If you read or write to one record in a database using sql, its thread safe (you dont need a transaction). If you read/write to multiple tables and/or records, you probably need a transaction. Servlets are thread safe. You usually dont need the 'synchronized' word anywhere unless you have a function updating/reading a static variable and therefore want to ensure only one user is accessing the static varible at a time. Also do so if you are writing to some resource (such as a file, a variable in applicaton scope, session scope, or resource that everyone uses such as email server). You dont want more than one person at a time to write to it). Note the database is one of of those resources that is handled by transactions rather than the the synchronized keyword (the synchronized keyword is applied to your application only (not other applications that someone is running), whereas the transaction ensures all applications are locked out while you update those records in the database).
    By the way, if you have a static variable, you should have one and only one function (synchronized) that updates it that everyone uses. If you have more than one synchronized function, that updates it, its probably not thread safe.
    An example of a static variable you would use is a Datasource object (to obtain your database connections). You only need one connection pool in your application and you access it via the datasource variable.
    If you're unsure your code is thread safe, you can create two seperate threads that call the same block of functions repeatedly to ensure it works as expected.

  • Using the Borland Database Engine to read AND write SHARED Paradox Database Tables

    I need to read and write Paradox database tables with a C# AT THE SAME TIME AS people using the Paradox tables with legacy Paradox programs interactively.
    I think the only way to do that reliably without corrupting the tables is to use the BDE Borland Database Engine.
    Does anyone know how to do that? I found this c++ program... But I don't know how to integrate this into c#
    http://www.codeproject.com/KB/database/bdedatabase.aspx
    Is there another way to do this? Again, most important, I don't want to corrupt the paradox database.
    I can read the paradox records all day long, that is no problem, it is updating at the same time as the legacy program users..
    I also know that the whole thing needs to be updated, but that can not be done overnight.
    Thanks in advance
    Dave

    Being pretty new to programming, I am trying just to read info from Paradox tables with C#. Info is actively being updated from another program at the same time. The program I am trying to write only needs to read data. The other program does use the BDE,
    so it is already present running on the computer.
    I've been looking at code but just haven't found quite the right combination.
    Thanks. Any help is greatly appreciated.

  • JSP read and write data in MS-SQL database

    I am new to JSP. I need to write JSP page to read and write data in MS-SQL Database. I wonder if it is different from other database. I couldn't find useful pointers in the web. Please advise. Thanks!!

    Sure, SQL Server is different from Oracle is different from MySQL is different from...
    But all of them can be accessed using JDBC:
    http://java.sun.com/docs/books/tutorial/jdbc/
    Maybe you should learn about that for starters.
    You can use SQL tags from JSTL in your JSPs. I'd recommend JSTL highly. No scriptlet code that way. - MOD

  • ITunes Library on an Airport Disk?  Read and write from multiple Macs?

    OK, I've scoured the forums for an answer to this, but haven't found anything definitive. Apologies if I've missed the answer, but here's what I want to know:
    I have an iMac as a primary computer, plus a Mac Mini hooked up to my entertainment system, and my girlfriend's powerbook in the house too. There seem to be two main iTunes options: either constantly try to keep all three iTunes libraries synchronised by running around importing files, etc.; or just keep one library, and share it over the network.
    Right now, I am keeping my iTunes library on my iMac and sharing it with the Mac Mini and the powerbook. If anyone wants to add music (or other content) to the library, it has to be through the iMac. Obviously the iMac has to be on for any other computer to access the shared library.
    I want to try to make things simpler by having a single "network" iTunes library that all computers to be able to share (read AND write). I envisage having this "iTunes Server" on an external HD connected to my Airport Extreme as an Airport Disk. If I move the entire contents of ~/music/iTunes (including artwork, library files, etc) to this central location, will the three Macs be able to deal with this, ie can multiple computers share an iTunes library database on an airdisk? Will I be able to stream content from this library to all three computers? Will I be able to import new music into the library from any one of the three computers?

    I am having a very similar problem. I have all of my music saved on a large external disk connected to my airport. I would like to be able to just play what i want from this disk, but i don't like having to download every track i want to listen to. I still want to be able to bring my laptop with me and have some music so i don't want to make this external disk my library folder. Is there a way to play it on my computer similar to a shared library on another computer? Am i asking to much out of apple?

  • How to share files in a network and allow read-and-write to a specific computer only?

    I have several computers in my network, and I want to share a folder and allow read-and-write from computer A to Computer B only, and omit computer C. How do I do that? Thanks.

    Thanks for the suggestion. I like this approach as Java is more familiar to me than other languages.
    Our DBA is out of touch today, so I could not grant the javauserpriv to my database user. I tried to run the script anyway in the chance that my user had the privs, and it seemed to have hung. I am now combing Oracle's site for more documentation so I can write some tests to see if I can get a basic Java object working. Under what heading would I find this?
    ajt

  • I have the latest Mac Air 13" and I have a Seagate 500MB external hard disk I cant copy or Cut any files on the hard disk and I cant even delete any files. I have the settings as Read and Write in the get info tab. Please help

    I have the latest Mac Air 13" and I have a Seagate 500MB external hard disk I cant copy or Cut any files on the hard disk and I cant even delete any files. I have the settings as Read and Write in the get info tab. Please helpand also note that my hard drive was formatted on a Windows 7 Laptop.

    thats the problem, its in MSDos (Fat) or NTFS for Windows.
    Options.....
    1. offload all that data on the HD onto your PC, THEN format the HD in EXFAT for use on BOTH PC and Mac for read/write.....then reload all (or as you need) that data back onto the HD
    2. get another HD, and format it for Mac OSX extended journaled.
    FAT32 (File Allocation Table)
    Read/Write FAT32 from both native Windows and native Mac OS X.
    Maximum file size: 4GB.
    Maximum volume size: 2TB
    You can use this format if you share the drive between Mac OS X and Windows computers and have no files larger than 4GB.
    NTFS (Windows NT File System)
    Read/Write NTFS from native Windows.
    Read only NTFS from native Mac OS X
    To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
    For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
    Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
    AirPort Extreme (802.11n) and Time Capsule do not support NTFS
    Maximum file size: 16 TB
    Maximum volume size: 256TB
    You can use this format if you routinely share a drive with multiple Windows systems.
    HFS+     ((((MAC FORMAT)))  (Hierarchical File System, a.k.a. Mac OS Extended (Journaled) Don't use case-sensitive)
    Read/Write HFS+ from native Mac OS X
    Required for Time Machine or Carbon Copy Cloner or SuperDuper! backups of Mac internal hard drive.
    To Read HFS+ (but not Write) from Windows, Install HFSExplorer
    Maximum file size: 8EiB
    Maximum volume size: 8EiB
    You can use this format if you only use the drive with Mac OS X, or use it for backups of your Mac OS X internal drive, or if you only share it with one Windows PC (with MacDrive installed on the PC)
    EXFAT (FAT64)    ------Can read/write from both PC and Mac
    Supported in Mac OS X only in 10.6.5 or later.
    Not all Windows versions support exFAT. 
    exFAT (Extended File Allocation Table)
    AirPort Extreme (802.11n) and Time Capsule do not support exFAT
    Maximum file size: 16 EiB
    Maximum volume size: 64 ZiB
    You can use this format if it is supported by all computers with which you intend to share the drive.  See "disadvantages" for details.

  • How to read and write data from json file from windows phone7 app

    Hi
    I am developing wp7 app for the use of students my questions are
    How can i write a code to read and write the json/text file for the wp7.
    I am using windows 7 OS, VS 2010 Edition.
    This is my code below:
    xaml:
    <Grid>
                        <TextBlock Height="45" HorizontalAlignment="Left" Margin="7,18,0,550" Name="textBlock1" Text="Full
    Name: " />
                        <TextBox Width="350" Height="70" HorizontalAlignment="Left" Margin="108,1,0,0" Name="txtName"
    Text="Enter your full name" VerticalAlignment="Top" />
                        <TextBlock Height="45" HorizontalAlignment="Left" Margin="6,75,0,0" Name="textBlock2" Text="Contact
    No: " VerticalAlignment="Top" />
                        <TextBox Width="350" Height="70" HorizontalAlignment="Left" Margin="108,61,0,480" Name="txtContact"
    Text="Enter your contact number" MaxLength="10" />
                        <Button Content="Register" Height="72" HorizontalAlignment="Left" Margin="10,330,0,0" Name="btnRegister"
    VerticalAlignment="Top" Width="190" Click="btnRegister_Click" />
                    </Grid>
    xaml.cs:
    private void btnRegister_Click(object sender, RoutedEventArgs e)
                string name, contact;
                name = txtName.Text;
                contact = txtContact.Text;
                try
                    if (name != "" && contact != "")
                        string msg = name + " " + contact;
                        MessageBox.Show(msg);
                        Student stud = new Student
                            Name= name,
                            Contact = contact,
                        string jsonString = JsonConvert.SerializeObject(stud);
                        MessageBox.Show(jsonString);
                    else
                        MessageBox.Show("Input Proper Information", MessageBoxButton.OK);
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
    I have download NewtonSoft.json version 5.0.8.
    So, I am able to convert input data into json format, but how can I able to write and read this data from a json/text file.
    How can I do?
    Thank you in adv and please, reply soon.

    We don't have many samples left for Windows Phone 7 + Azure, the closest one to what you want to do is probably:
    Using Local Storage with OData on Windows Phone To Reduce Network Bandwidth
    this sample uses the local database feature: 'LINQ to SQL', available to Windows Phone 7.1 and 8.0 Silverlight applications, instead of simple file storage but even if you choose to stick with simple file storage I believe you should be able to adapt the
    networking related portions of the sample to your particular application.
    Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
    your votes for existing suggestions.

  • How do I migrate files created in a Windows OS to a new external drive that is formatted as a MAC drive. I want to read and write these files back to the new drive.

    How do I migrate files from an external hard drive created in a Windows OS to a new MAC external drive? I want to read and write these files to the new drive.

    LKrzesowski wrote:
    How do I migrate files from an external hard drive created in a Windows OS to a new MAC external drive? I want to read and write these files to the new drive.
    If all you're trying to do is move the files from the Windows external to the Mac external, you can simply connect them both to the Mac and drag the files from the Windows drive to the Mac drive. If you want to move the files back and forth between them, you'll need to establish the format of the Windows external. Macs can read and write to FAT32 and exFAT (which can handle files larger than 4GB) formatted drives but can only read NTFS formatted drives without additional software. With the Windows drive connected, you can check its format with Disk Utility.

  • How to read and write Unicode text with MS Access?

    Hi all, I'm new to Java, so please forgive me if my question is too ... ^_^
    I'm writing a small program that read and write data with MS Access. However, when I insert Unicode text into the database, it has wrong encoding like this "h?y l? n?m".
    Please tell me how to fix this.
    Thanks in advance!

    The following forum thread might be enlightening:
    http://forum.java.sun.com/thread.jspa?threadID=573855&messageID=2870785
    I myself do not use MS Access, but a PreparedStatement is in general the best option.
    You can set parameters in the SQL which then get converted and even protected against SQL injection hacking.

  • Read and write from access

    I am arun, a beginner in the field of LabVIEW. Now I am trying to read and write data from MS Access with out database connection toolset. How this possible. How I can use activex in Labview for doing this. Please give me some reference materials.

    Hi Arun,
    The following discussion forum talks about the same issue, and provides a good explanation and references for the different options. Also, which version of LabVIEW are you using?
    How to read/write from Access database
    Thanks,
    Lesley Y.

  • Read and write a item's value in running Form.

    Hi everybody,
    Could you help me?
    I have a table name QUANTITY(store in Oracle database server), this table have 2 filed: Model name and Quantity
    I created a oracle form(Store in oracle application server) to show Quantity. I running this form in a client.
    Now i want read and write QUANTITY of one Model to text file in client. It is difficult to me!
    Please help me,

    Try something like this...
    PROCEDURE load_data IS
       outFile  CLIENT_TEXT_IO.FILE_TYPE;
       linebuf varchar2(1000);
       X1 VARCHAR2(20) := ' ';
       X2 VARCHAR2(15);
       File_Not_Found EXCEPTION;
       cursor c1 is
       select col1, col2 from QUANTITY;
    BEGIN
       outFile := CLIENT_TEXT_IO.FOPEN('c:\tmp\Outputfile.txt','w');
       if CLIENT_TEXT_IO.IS_OPEN(outFile) then
       open c1;
       LOOP
          FETCH C1 INTO c1_rec;
          EXIT WHEN C1%NOTFOUND; 
          X1 := c1_rec.col1;
          x7 := c1_rec.col2;
          linebuf := X1|| ' ' ||X2;    
          CLIENT_TEXT_IO.put(outFile,linebuf);
          CLIENT_TEXT_IO.NEW_LINE(outfile);
       END LOOP;
       close c1;
       end if;
       CLIENT_TEXT_IO.FCLOSE(outfile);  
    END;Hope this helps,
    Charan
    Edited by: Charan on Oct 2, 2011 4:09 PM

  • HELP!: How to read and write to External hard drives? What file system to use?

    hey all, this has been really frustrating for me today. i want to be able to write to an external HDD that's formatted in NTFS. today i find out it isn't possible to write to this file system on a Mac and that on FAT32 it is possible. however, FAT32 can't address files larger than 4GB so this hurts me a lot. are there any other file systems that'll allow me to read and write from a Mac? my goal was to use freeNAS to build a NAS with an old tower and connect my external hard drives to it, but if i can't write to them this may not be possible.
    thanks guys, i'd appreciate any help!

    Read this, you don't need to install any software unless you have no choice.
    https://discussions.apple.com/docs/DOC-3044
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • View to find Physical read and Write per hour

    HI,
    My oracle database is running with 11.2.0.3 and we are analysing the database. we would like to understand what the average load time per hour is for  a database under normal circumstances e.g. 5 TB /Hr ?
    What I want to know is, Is it possible to find the amount physical reads and writes happened per hour basis on database. Is there any view to find this ?
    Thanks,
    Kesav.

    1e36fe40-5d07-412e-8ed2-704c647ed7a7 wrote:
    HI,
    My oracle database is running with 11.2.0.3 and we are analysing the database. we would like to understand what the average load time per hour is for  a database under normal circumstances e.g. 5 TB /Hr ?
    What I want to know is, Is it possible to find the amount physical reads and writes happened per hour basis on database. Is there any view to find this ?
    Thanks,
    Kesav.
    number of READ operations?
    number of bytes read?
    SQL> desc v$IOSTAT_FILE
    Name                                      Null?    Type
    FILE_NO                                            NUMBER
    FILETYPE_ID                                        NUMBER
    FILETYPE_NAME                                      VARCHAR2(28)
    SMALL_READ_MEGABYTES                               NUMBER
    SMALL_WRITE_MEGABYTES                              NUMBER
    LARGE_READ_MEGABYTES                               NUMBER
    LARGE_WRITE_MEGABYTES                              NUMBER
    SMALL_READ_REQS                                    NUMBER
    SMALL_WRITE_REQS                                   NUMBER
    SMALL_SYNC_READ_REQS                               NUMBER
    LARGE_READ_REQS                                    NUMBER
    LARGE_WRITE_REQS                                   NUMBER
    SMALL_READ_SERVICETIME                             NUMBER
    SMALL_WRITE_SERVICETIME                            NUMBER
    SMALL_SYNC_READ_LATENCY                            NUMBER
    LARGE_READ_SERVICETIME                             NUMBER
    LARGE_WRITE_SERVICETIME                            NUMBER
    ASYNCH_IO                                          VARCHAR2(9)
    ACCESS_METHOD                                      VARCHAR2(11)
    RETRIES_ON_ERROR                                   NUMBER
    SQL>

Maybe you are looking for

  • I would like to take the time to...

    I find it absolutely necessary to share this with you, the reader - the community! I would like to thank you, Firefox developers and all the rest, for: helping feed the poor in Africa; helping to end global terrorism; helping to keep children safe; h

  • How To Avoid the message ...

    hi all, First the explanation: in one form ,form_A a query form where i enter just the empno to get the emp details and press the 'QUERY' button to get details i have written the below code in the when-button-pressed trigger. begin execute_query; end

  • I can't find my iPhone 4 I lost

    I can't find my iPhone 4, It has'nt iCloud registered

  • Movement type for customer supplied packing material returns

    Hi,      The scenario is like this,customer will give the packing material to the company.Company does the service required  &  return that packing material to customer.Presently we are using 624V movement type can you suggest some other movement typ

  • How to view data in legacy ?

    Hello, how can i view data from legacy, prior year in my case, that has been migrated to ECC ? Thanks and i will assign points