Df and du showing different outputs on 5.8

hi all,
On 5.8 Solaris box, the df and du are showing around 20Mb space difference. the file systems are part of veritas cluster and showing 100% and 99% full.
bash-2.03$ uname -a
SunOS mybox 5.8 Generic_117350-38 sun4u sparc SUNW,Sun-Fire-880
will you suggest any known bug and a fix like path, please get back for any additional information.

these file systems belongs to oracle datafiles and there are many file system with the same status. i am also looking for any known bugs on df or du which can cause this issue.
can you infer any thing from this info....
bash-2.03$ df -k /ars/u01
Filesystem kbytes used avail capacity Mounted on
/dev/vx/dsk/remedydg/u01vol
6184960 6136477 45457 100% /ars/u01
bash-2.03$ du -k /ars/u01
0 /ars/u01/lost+found
6118499 /ars/u01/oradata/ARS
6118499 /ars/u01/oradata
6118499 /ars/u01
bash-2.03$ df -g /ars/u01
/ars/u01 (/dev/vx/dsk/remedydg/u01vol): 8192 block size 1024 frag size
12369920 total blocks 96966 free blocks 90914 available 12136 total files
12118 free files 65363856 filesys id
vxfs fstype 0x00000004 flag 255 filename length
bash-2.03$ /usr/lib/fs/vxfs/df -F vxfs -k /ars/u01
Filesystem kbytes used avail capacity mounted on
/dev/vx/dsk/remedydg/u01vol 6184960 6139503 45457 99% /ars/u01

Similar Messages

  • I m updated my phone but some problems occured, so i connect it to itunes and it said "your iphone is detected in recovery mode" so i tried restore it but was unsuccessful and it shows different unknown errors such as 14, 2009,1611. Please help

    i m updated my phone but some problems occured, so i connect it to itunes and it said "your iphone is detected in recovery mode" so i tried restore it but was unsuccessful and it shows different unknown errors such as 14, 2009,1611. Please help

    Hello Mubashir surf google and try pressing power and home button at the same time untill apple sign shows up and then leave it .
    Otherwise surf google you mite have to edit you host file in windows , system32
    Let me know if it works

  • Software inventory report and PC show different information

    Hi,
    The scenario is the following:
    SCCM 2012 R2.
    Clients with windows 8.
    The report "Software registered in Add Remove Programs on a specific computer" and "Programs and Features" show different information.
    Programs and features screenshot(ordered by name):
    Report screenshot (ordered by name):
    The question is:
    Is the above normal behavior?
    if not
    How to get in the report "Software registered in Add Remove Programs on a specific computer" all of the software listed in "Programs and Features"?
    Thanks in advance!

    Take a look at that device in Resource Explorer.  Notice that on a 64-bit device there is an 'Installed Applications' class and and 'Installed Applications (64)' class.  This data comes from the registry, and on a 64-bit operating system there
    are actually two separate 'Add/Remove Programs' lists that are aggregated in the OS user interface.
    If in Resource Explorer you see all of the software you expect to see, but not in the report, it is likely because the report is only looking at the 'Installed Applications' class and and not 'Installed Applications (64)' class.
    If you enable the 'Installed Software' class (either by going into the client settings or the AI node), you will notice that the 'Installed Software' class is a combined version of both the 32-bit and 64-bit applications.  This is much easier to report
    off of.
    I hope that helps, 
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

  • Mac and Windows showing different hard drive space remaining?

    Hello Guys,
    I am using my 1tb hard drive with mac and windows and while checking the space remaining, my mac says roughly 600gb left and my windows comp. says about 500gb left. I am just wondering which one of the storage remaining statements is correct and why they both show different numbers (by 100gb)? If it helps, this also happens to my 16gb flash drive. mac says 10 gb left, and windows says less space left (dont remember actual number, but was roughly 6-8).
    Just asking becuase I want to know why such a big difference in size remaining. Could it have to do with the way each OS sees what defines the harddrive as full?
    if it matters, my hdd format is MS-DOS (FAT32).
    Thanks a lot,
    krm1897

    haha its been 2 years. And no, i didn't figure it out, but i speculate it may have to do how Mac OSX and Windows reads the FAT file system (my tb hdd was FAT formatted so i could use it on both OS) and calculates remaining space.
    That may be right, or it may be completely wrong lol
    krm1897

  • ODS and Infocube showing different results

    Hi,
    I loaded same data to Infocube and ODS but they are both showing different result in BEX.
    ODS
    ODS report is showing summarised values e.g
    vendor               order value                   invoice value        date
    00001                    20                               20                 01.01.2007
    Infocube
    result is showing not summarised values
    vendor               order value                   invoice value        date
    00001                    20                                 0                      0
                                  0                                20                  01.01.2007
    I would like to make the infocube result same as the ODS because I am remodelling so that we start reporting from Infocube rather than ODS.
    thanks

    Hi,
    this is the scenario
    currently we are reporting from ODS object which fetch data from 3 ODSes. now I am asked to remodel so that we can report from infocube not ODS.
    steps I have taken so far.
    - created new infocube
    - created 3 update rules ( same Update rules that gives the reporting ODS data).
    my target is to make sure that the current ODS  report is the same as the infocube report but so far the report is not consistent
    I compared the data in the ODS and infocube and they are exactly the same but the report is showing differently

  • Dba_index_name and dba_ind_columns showing different results

    Hi All,
    I am confused why it is showing different results:
    [email protected]#>select index_name from dba_indexes where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    [email protected]#>select index_name from dba_IND_COLUMNS where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    MSISDN_IDX
    When trying to drop index MSISDN_IDX it gives error:
    ERROR at line 1:
    ORA-00054: resource busy and acquire with NOWAIT specified
    But when trying to check where all the index is used using v$access:
    select * from v$access where object='MSISDN_IDX';
    no rows selected
    Regards,
    Kirti

    If I run the following query on a 9.2.0.6 database, no index is listed:
    select type, count(*) from v$access group by type;CURSOR
    FUNCTION
    NON-EXISTENT
    PACKAGE
    SEQUENCE
    SYNONYM
    TABLE
    TRIGGER
    VIEW
    It seems that index is not taken into account by v$access ?

  • Count and Sum show different in Summary tab

    Hello friends,
    Webi 4 version
    I have a webi dcument with 4 report tabs. Summary, Expense,Revenue and Forecasting.
    I have a SUM value in Expense tab and Revenue tab. I also have Count value in Forecasing.When I copy these SUM and Count values to Summary tab, they show different values than those in other tabs.
    Please help me to resolve this
    Thanks
    Renpal

    Hi Renpal,
    Even if we write the aggregate values in to a variable and if you copy that variable in Summary tab it may not give the same result.For Example.
    If count of Sales orders in Detail tab is showing as 500 and in Summary tab it may show as 489. This is because in Detail tab there might be some cells which are "#" or Not assigned. so due to granularity it will count each and every cell, incase of summary all # or Not Assigned are calculated as 1.
    Can you check wrt the above example where exactly the data is not matching.
    Regards,
    G.SaiNath

  • Mac and iPhone showing different number of songs

    I have iTunes match enabled to the same (and my only) account on several devices. They are all showing different # of songs:
    iPhone: 1,331
    iPad: 1,328
    Mac: 1,315
    PC: 1,139
    Why? How do I get all the tunes on my Mac and especially PC?
    I have synched with the cable to my PC and received no errors.
    Help!

    haha its been 2 years. And no, i didn't figure it out, but i speculate it may have to do how Mac OSX and Windows reads the FAT file system (my tb hdd was FAT formatted so i could use it on both OS) and calculates remaining space.
    That may be right, or it may be completely wrong lol
    krm1897

  • Mac, iPad and iPhone show different iCloud Drive content

    I'm getting mad about iCloud drive.
    For hours I try to get all my devices in sync. But they all show different content. In Finder I can see only 4 app folders containing the documents (actually pages, keynote, numbers and pdfexpert). Browsing the iCloud drive on the iPad for example using the pages app I can also see a GoodReader folder and some more. Some of them are empty folders (maybe empty folders are hidden on mac by default?) but some of them contain folders and files which obviously won't download to my Mac.
    There are also some folders related to apps I removed from all my devices. It's ok if these app's iCloud folders stay in the cloud if they contain any documents but they stay there even if they are empty and there seems to be no way to remove these folders manually (even the web interface of iCloud greys out the trash when such a folder is selected).
    When I use OS X Preferences to remove some old app's iCloud content I can do this for some of them but then (all of a sudden - can be after two of ten removals) the list on the left side shows only "Backups" (or sometimes "Backups" and an unspecific "Documents") and you have to close the Preferences and reopen it a little later to see the complete list again. And showing the app icons seems to be a problem too (including the iPad / iPhone preferences -> iCloud) - some of them are shown, for some of them there are only placeholders.
    Am I doing it wrong or are these common problems?

    Same problem here – specifically, the CONTENTS of "iCloud Drive" are different when accessed:
    A) in the Finder on Yosemite
    B) on the web at iCloud.com
    C) on an iOS device
    The MAJOR problem for me is that my Goodreader folder only shows up on the iOS device, making it impossible for me to access my Goodreader files. This is a huge issue for me as my workflow depends on having access to those files.
    In general, however, it's ridiculous that you can copy data to iCloud Drive on your iOS device and then you cannot read that data anywhere else.

  • Mozilla and IE show different applications referencing the same URL

    Hi, I have a very strange problem.
    I deployed a web app, using Sun App Server 9, directly from a directory of the server. Then I made some changes and redeployed the application. But IE still showing me the app before the changes, and Mozilla shows me the application after the changes.

    I solved this problem,
    The two browsers showed the same jsp's, but different non jsp files, such as js, and css. I only had to refresh the page.

  • [SOLVED] mount command and fstab show different file systems

    I recently setup my /etc/fstab to mount by LABEL.
      LABEL=ArchLinux        /    ext2    rw,noatime,errors=continue    0    0
      LABEL=Data30GB        /data    ext2    rw,noatime            0    0
    When I reboot, these two drives work fine. But I run the "mount" command and it shows:
      /dev/disk/by-uuid/8fac6ab0-3d40-4676-bf30-b23c482b47b9 on / type ext2 (rw,noatime,errors=continue)
      /dev/sdb1 on /data type ext2 (rw,noatime)
    I'm curious, why does mount not list things by how the fstab shows them? By the way, I have other drives labeled and mounted by label and it shows the device (i.e. /dev/sdd1) instead of the LABEL as fstab shows on those as well.
    Anyone know why?
    Last edited by HuckleSmothered (2011-08-06 19:38:35)

    LABEL= and UUID= aren't something the kernel understands -- they're tags interpreted by blkid that resolve to a device, e.g.:
    $ blkid -lt LABEL=root -o device
    /dev/sda2
    This functionality is provided by util-linux's libblkid, which /bin/mount links against. In other words, that syntax in /etc/fstab is just a convenience feature.
    Last edited by falconindy (2011-08-06 19:30:09)

  • Cfchart shows different output in 7.0.2 and 6.1

    We had a upgrade of CF MX server from 6.1 to 7.0.2 recently
    in an AIX platform. After the upgrade, CFCHART output is different
    than the one from the previous version. Please see the code below.
    BAR chart is shown as lines in new version that too with different
    colors.
    <html>
    <body>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="100">
    </cfchartseries>
    </cfchart>
    <br>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 May" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jul" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 aug" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Sep" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Oct" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Nov" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Dec" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Jan" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Feb" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Mar" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Apr" value="100">
    </cfchartseries>
    </cfchart>
    </body>
    </html>

    anchalgupta181988 wrote:
    Is it possible to switch from iOS 7.0.2 to 6.1.3.
    Sorry... No... Downgrading is not supported by Apple.
    anchalgupta181988 wrote:
    Since I have updated my IPhone 4 iOS 6.1.3 to 7.0.2, my iPhone has started to hang and the processing has become slow.
    Try This...
    Close All Open Apps... Sign Out of Your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Reset all settings
    Settings > General > Reset > Reset all Settings.
    This will return all iDevice settings to factory defaults... you will not lose any data.... But you will have to re-enter all of the device settings.
    If the issue persists...
    Connect to iTunes on the computer you usually Sync with and Restore
    http://support.apple.com/kb/HT1414
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Some Other Tips Here...
    http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/
    http://osxdaily.com/2013/09/19/ios-7-battery-life-fix/

  • Why do my MacAir and iPhone show different times?

    I have a MacAir running OSX Yosemite. I also have an iPhone 6. I get both to update the times shown on their clocks automatically. Last month, there was a 2 minute difference between the two; now there is a 3 minute difference. (the MacAir is always ahead) This might sound like a tiny issue but I use my MacAir for presentations and have my phone showing the time fullscreen too - to ensure I keep exactly to time. So it's quite off-putting to have two different times showing.
    Any idea how I can get them in synch with each other?
    Many thanks!
    James

    I have a MacAir running OSX Yosemite. I also have an iPhone 6. I get both to update the times shown on their clocks automatically. Last month, there was a 2 minute difference between the two; now there is a 3 minute difference. (the MacAir is always ahead) This might sound like a tiny issue but I use my MacAir for presentations and have my phone showing the time fullscreen too - to ensure I keep exactly to time. So it's quite off-putting to have two different times showing.
    Any idea how I can get them in synch with each other?
    Many thanks!
    James

  • Fdisk and format show different cylinders can't use whole disk for solaris?

    Solaris 10 5/09 s10x_u7wos_08 X86
    Format did not show enough cylinders, so we can't use whole raid5 (4x 146GB) volume.
    How can we fix it? We need the full raid5 volume for our solaris.
    formatAVAILABLE DISK SELECTIONS:
    0. c2t0d0 <DEFAULT cyl 17817 alt 2 hd 255 sec 63>
    /pci@0,0/pci10de,375@f/pci108e,286@0/disk@0,0
    Specify disk (enter its number):
    fdisk outputTotal disk size is 53502 cylinders
    Cylinder size is 16065 (512 byte) blocks
    Cylinders
    Partition Status Type Start End Length %
    ========= ====== ============ ===== === ====== ===
    1 Active Solaris2 1 17819 17819 33
    arcconf getconfigbash-3.00# ./arcconf getconfig 1
    Controllers found: 1
    Controller information
    Controller Status : Optimal
    Channel description : SAS/SATA
    Controller Model : Sun STK RAID INT
    Controller Serial Number : 00919AA0670
    Physical Slot : 0
    Temperature : 71 C/ 159 F (Normal)
    Installed memory : 256 MB
    Copyback : Disabled
    Background consistency check : Disabled
    Automatic Failover : Enabled
    Global task priority : High
    Defunct disk drive count : 0
    Logical devices/Failed/Degraded : 1/0/0
    Controller Version Information
    BIOS : 5.2-0 (16732)
    Firmware : 5.2-0 (16732)
    Driver : 2.2-2 (1)
    Boot Flash : 5.2-0 (16732)
    Controller Battery Information
    Status : Optimal
    Over temperature : No
    Capacity remaining : 99 percent
    Time remaining (at current draw) : 3 days, 1 hours, 11 minutes
    Logical device information
    Logical device number 0
    Logical device name : v
    RAID level : 5
    Status of logical device : Optimal
    Size : 419690 MB
    Stripe-unit size : 256 KB
    Read-cache mode : Enabled
    Write-cache mode : Enabled (write-back)
    Write-cache setting : Enabled (write-back)
    Partitioned : Yes
    Protected by Hot-Spare : No
    Bootable : Yes
    Failed stripes : No
    Logical device segment information
    Segment 0 : Present (0,0) 000849E5RY9A P4X5RY9A
    Segment 1 : Present (0,1) 000849E4TX4A P4X4TX4A
    Segment 2 : Present (0,2) 000849E56KAA P4X56KAA
    Segment 3 : Present (0,3) 000849E5S0GA P4X5S0GA
    Physical Device information
    Device #0 - 3
    Device is a Hard drive
    State : Online
    Supported : Yes
    Transfer Speed : SAS 3.0 Gb/s
    Reported Channel,Device : 0,0
    Reported Location : Enclosure 0, Slot 0
    Reported ESD : 2,0
    Vendor : HITACHI
    Model : H101414SCSUN146G
    Firmware : SA25
    Serial number : 000849E5RY9A P4X5RY9A
    World-wide name : 5000CCA0007B2BFF
    Size : 140009 MB
    Write Cache : Disabled (write-through)
    FRU : None
    S.M.A.R.T. : No
    Device #4
    Device is an Enclosure services device
    Reported Channel,Device : 2,0
    Enclosure ID : 0
    Type : SES2
    Vendor : ADAPTEC
    Model : Virtual SGPIO
    Firmware : 0001
    Status of Enclosure services device
    Temperature : Normal
    Device #5
    Device is an Enclosure services device
    Reported Channel,Device : 2,1
    Enclosure ID : 1
    Type : SES2
    Vendor : ADAPTEC
    Model : Virtual SGPIO
    Firmware : 0001
    Status of Enclosure services device
    Temperature : Normal

    astra666 wrote:
    Hi Smart71,
    I know it sounds complicated, but it really isn't.
    You need to select the option to manually edit the disk label
    when you install solaris.
    Your problem is that you have assigned 73 GB for your / (root)
    and 63 GB for your swap. That's not the problem that I see. The problem is that the Solaris partition (and therefore the Solaris VTOC label inside) is only for 136GB. But the actual underlying storage is 409GB. So the entire partition and the VTOC have to be rewritten.
    You only have 2 options. Either re-install Solaris, of re-partition the disk.
    If you don't have a spare disk to copy root to and you want to use
    the whole disk, with just one / root partition, you will need to shrink /swap
    create another slice to copy root to temporarily, and then re-partition your disk. Agreed reinstalling is easiest. But moving slices around will not let you change the VTOC size.
    eg:
    boot from CD into single user mode.
    partition the disk so that eg:
    swap is 3 GB. eg: ( from cylinder 1 to cylinder 400 )
    partition 3 is 7 GB ( from cylinder 401 to cylinder 1318 )
    ( if 7 GB is enough to hold all your / data )
    write the disk label out
    newfs partition 3
    mount / on /a
    mount partition 3 on /mnt
    Copy everything from /a to /mnt eg:
    rsync -vaxH /a /mnt
    or
    find /a -xdev -print | cpio -pdam /mnt
    umount /a and /mnt
    re partition the disk so that / takes all the free space.If that were your goal, you wouldn't have to move anything. Just repartition and use 'growfs' on the root filesystem directly (while booted from CD).
    eg ( starting at cylinder 1319 to cylinder 17816 )
    write disk label out
    newfs part 0 for /
    mount / on /a and part 3 on /mnt
    copy everything back from /mnt to /a
    Check /a to make sure everything is there.
    umount /a and /mnt
    re partition the disk to make /swap 10 GB
    ( starting at cylinder 1 to cylinder 1318 )
    write disk label out.
    And that's it.
    The disk you are working on is 17816 cylinders in size.
    yet down the bottom you say that :
    Total disk size is 53502 cylinders
    That tells me there are 4 disks in the raid 5 set, and that
    you have probably been presented with 3 x 136 GB disks.
    That means that you should have 2 x 136 GB disks free.
    Use one of these to copy your /root to. and then
    re-partition your first disk and copy data back.
    Or partition another disk correctly, write a boot block to it
    Copy your root data to it, and boot from it.The entire disk is presented to the machine (as seen in the fdisk output), but the Solaris partition is only using the smaller portion of it. You can't create a second Solaris partition and use it at the same time, either. Only one Solaris partition can be used at a time.
    Darren

  • Apple watch and iPhone show different step counts

    When I look at the activity app on my watch and on my phone, they show a different number of steps. For the most part i've been walking with both my phone and watch, so I'm wondering why the number doesn't sync between the two. Obviously on the phone its including some additional steps that it is counting that the watch didn't get. I have not calibrated it yet (doing a workout with the GPS on the phone). When I look at the raw data int he Health app, the phone is obviously counting a couple more steps each time. Is this something other people are encountering or will it fix once I've calibrated it?

    I have the same issue, but my iPhone actually has fewer steps counted. I did a dumb test to count steps myself and looks like my iPhone has more accurate steps. The thing bothering me most is the Health app picks steps from iphone and watch. It doesn't recognize sometimes the data is duplicated.

Maybe you are looking for

  • Can't launch Adobe Reader 11.0.06: 'An internal error occurred'

    Today I purchased a highly recommended e-book ('Rally All Around') which is available by download. Double clicking on its file brought up a message that I needed a newer version of Adobe Reader, and linked me directly to 11.0.06 (Mac) on the Adobe si

  • Is there ANY WAY to get my files (mainly music) off of my ipod?

    My 3rd generation Ipod touch went into recovery mode, and it says I must restore it in order to use Itunes. The thing is, my laptop broke before I had a chance to back up any of the files. My question is, is there any possible way to get the files (m

  • Error Message "not a valid Windows CE application?"

    Hi, I build an executable using PDA module and try to open it up on Pocket PC, but it says "FILENAME is not a valid Windows CE application" every time.  Can any one give me a pointer or two? Do I have to install a thing or two onto the Pocket PC syst

  • Is there any way to hook up to beatbox by dre bluetook to my pro?

    ?? I try and select it and it just says an "error occured cnnecting to this device" is the pro not capable of running this stereo via bluetooth?

  • XL Reporter multi server

    Hello, I'm using XL Reporter and i got two SBO mssql servers. The first one is on my computer for tests and the another one is on the lan. I can use XLR only on the server from which I've installed it. If I try to run it on the other sql server, I go