Small  ....

Hi BW Gurus,
           when did u occured "Error,Warning and Abort" messages in query excution?
Thanks

hi devi
Which version..in BI7.0 or 3.5..
In Bi7.0 , it shows how to rectify the error thru , error help..
When any exception araises in ur query then error occured.
Pls assign points.
regards
peras

Similar Messages

  • How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit

    How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit
    I ran Coldfusion 8 on SBS 2003 Premium for 6 months with no problems.  When we finally decided to cut over to SBS 2008, that’s when everything went to hell.  I tried for weeks to get Coldfusion 8 to install properly on the new SBS 2008 64-bit box.  During the course which, I found bits and pieces of information for Vista 64-bit and Windows Server 2008 64-bit installations.  There are some distinct differences, however, with SBS 2008 since it runs core Web applications like OWA, RWW and Companyweb.  After countless unsuccessful attempts, one of which completed corrupted the box, I found the solution.
    I have attempted in this white paper to detail the steps to assist others who may be in a similar situation.  I don’t make any warranty for the information, but so long as you follow the steps carefully you should be fine.  BTW, for those of you who say Adobe offers free technical support for licensed users, that’s not entirely true.  Like I said, I purchased CF8 and originally installed it on an SBS 2003 Premium box.  After we cut over to SBS 2008 and encountered problems, Adobe wouldn’t provide any technical support without charging.  Moreover, based on my initial conversations with Adobe’s technical team, no one seemed to know much about running 64-bit on SBS.
    From my understanding, only two versions of Coldfusion 8 can be installed in 64-bit: Enterprise and Developer.  The “normal” install (which I paid a grand for) can only be deployed in 32-bit mode – gee, THANKS Adobe!  By the way, in Developer mode only two distinct IPs can access the site in addition to the localhost.  Any additional IPs will result in a CFML error message stating that the maximum number of IPs have been exceeded.  At any rate, take your time and follow the steps to achieve a successful installation. 
    PRE-INSTALLATION TASKS
    Back Up SBS
    It’s always a good practice to backup your server before deploying any kind of major system changes.  Although this step is optional, I recommend it in case you need to restore your server for any reason.  Bear in mind, if your system ever gets totally corrupted, you cannot restore back from the twice daily incremental backup images alone.  You will need a full backup with system recovery information to restore.  Here are the basic steps:
    Click: Start > Programs > Administrative Tools.  Right-click “Windows Server Backup” and choose “Run as administrator”.
    Click “Backup Once” under Actions in the right-hand pane.
    Choose the “Different Options” radio button under Backup Options.
    Choose the “Custom” radio button.  What we’re primarily interested in here is backing up the OS – not your data partitions or attached drives.
    Select the “SYSTEM (C)” checkbox, uncheck any others.  Also, ensure that the “Enable system recovery” checkbox is selected before continuing on.
    Under ‘Specify Destination Type’, I usually select the “Local drives” radio button and point it to a Terrabyte USB drive I use for backups.  You can point this to a tape drive, or select the “Remote shared folder” radio button if you map to a UNC path to store your backup images.  Just remember, make sure that whatever path you select can readily be accessed in the event of an emergency.  Also, make sure the “Verify after writing (recommended)” checkbox is selected.
    Under ‘Specified Advanced Option’, I usually select the “VSS full backup” radio button instead of the default since I don’t use a 3rd party backup product.  If like me you rely solely on SBS for your backups, choose the full backup option.
    Confirm everything and click “Backup”.  This process may take several hours depending on the size of your system.
    Verify ISAPI Filters:
    In IIS Manager, double-click the server instance in the left-hand pane.
    In the center pane under IIS, double click the “Modules” icon to verify that the ISAPI native modules are already installed for IIS.  If it’s set up correctly you should see two entries:
    IsapiFilterModule              %windir%\System32\inetsrv\filter.dll
    IsapiModule                        %windir%\System32\inetsrv\isapi.dll
    If either of these modules are missing, you will need to re-install these (google for a solution).
    Set Up Development Environment
    Create a directory for your CFML files outside of the default Windows location (e.g., default is usually C:\inetpub\wwwroot\).  For the purpose of our install, I created a directory on a separate disk called: D:\DEV.
    Copy and paste your CFML files and directories into the new DEV root Web directory.  This will eventually be the directory where the Coldfusion installer places the CFIDE and CFDOCS folders. 
    Open IIS Manager and double-click the server instance in the left hand pane.  Expand the “Sites” folder.  Right-click the Sites folder and select “Add Web Site”.
    Enter a name in the “Site Name” box (e.g., “test-site”).  You will notice that the system will automatically create a corresponding Application Pool with the same name.  NOTE: this is important to prevent conflicts between the DefaultAppPool (needed for SBS Web apps like OWA, RWW, etc.) and the application pool needed for Coldfusion to function properly in SBS 2008.
    Point the “Physical Path” to the directory you created in step #1 above (e.g., “D:\DEV”).
    Don’t worry about testing the connection.  If you click “Test Settings” you may receive a warning that IIS cannot verify access to path (D:\DEV).  Don’t worry about this for the time being.
    Under “Host name”, enter a DNS path to your site (e.g., “dev.test-site.com”).  Click “OK”.
    Configure Application Pools for Installation
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “False” to “True”, and then click “OK”.  NOTE: if you skip this step, Coldfusion will not properly create the required mappings during the install. We will change this setting back after the installation completes – more on this later.
    Modify the application.host.config File for 64-Bitness
    Click: Start > Programs > Accessories.  Right-click “Notepad” and choose “Run as administrator”.
    Open the config file from within Notepad – default location: C:\Windows\System32\inetsrv\config\applicationHost.config
    Do a search and change this one line from:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
    To this:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="bitness64" />
    Restart the IIS Admin service.
    Set HTTP Compression
    According to some threads I read, the http compression module can cause errors if you don’t disable it globally. To remedy this, perform the following:
    Click: Start > Programs > Accessories.  Right-click “Command Prompt” and choose “Run as administrator”.
    At the command prompt, change directory to intetsrv by typing: cd inetsrv
    Run the following command:
    C:\Windows\system32\inetsrv>appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
    This will turn off HTTP compression for all sites in IIS.
    In IIS Manager, double-click the server instance in the left-hand pane.  Double-click the “Compression” icon in the IIS section of the center pane.
    Uncheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Recheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Restart the IIS Admin service.  This should enable compression and coldfusion to work at the same time.
    NOTE: if for some reason you need to reverse this, run the following command from the command prompt:
    C:\Windows\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name='xpress',doStaticCompression='false',dll='%windir%\system32\inetsrv\suscomp.dll']
    INSTALLATION TASKS
    Download the 64-bit installation package from Adobe – filename: coldfusion-801-wind64.exe.
    Right-click the file and select “Run as administrator”.
    Accept the terms of the License Agreement.
    If you have an Enterprise license, enter it.  For our purposes, just click the “Developer Edition” checkbox.
    Select “Server configuration” – the default radio button.
    I deselected all subcomponents and can’t guarantee that you’ll arrive at the same results if you select additional items like “.NET Integrated Services”.  It should be fine, particularly if you install documentation.  My preference was to keep the install as plain vanilla as possible.
    Select the directory path for Coldfusion to install into – default is :C\Coldfusion
    THE NEXT TWO STEPS ARE CRITICAL TO YOUR SUCCESS.  Unselect “All IIS Websites” and select the “Configure specific IIS Website or another web server” radio button.  Click “Add”, and then select your test Web site (e.g., “test-site”) under “IIS Web Site”.  Hit “OK”.
    Do NOT use the default directory path for the CF Administrator location (e.g., default path: “C:\inetpub\wwwroot”).  Instead, point the installer to your new DEV root Web directory (e.g., “D:\DEV”).  The bottom line, you want the installer to place the CFIDE directory and files within this folder, alongside your other CFML files and folders.
    Enter an Administrator password.
    Choose to Enable RDS, or not.  I enable this by preference but it is not required.  This allows you to make updates to files using a CFML editor directly vs. having to move/FTP the files over if you’re working remotely.  Opponents to this argue that it’s potentially less secure, but for a lower environment I don’t see this as a major concern.
    Confirm everything to kick off the install.
    If all goes well you should see a message at the end stating that the install was successful.  I recommend you uncheck the box that asks you to open the CF Administrator in the default Web browser after the install.  NOTE: we will open it a different way during the post-installation tasks.  The worst thing that will happen if you forget to uncheck the box is that you might receive an error that the command prompt hung – not a big deal – just close it and move on to the next (final) steps.
    POST-INSTALLATION TASKS
    Verify CF Installation:
    The installation will create a new folder in your program group: Start > Programs > Adobe > Coldfusion 8.  The default “Administrator” link will not work because it points to the wrong path: http://127.0.0.1/CFIDE/administrator/index.cfm. The “127.0.0.1” or “localhost” path as you may recall in IIS, points by default to the “C:\inetpub\wwwroot” directory.  Our CFIDE files, however, are located within: D:\DEV.
    To bring up the CF Administrator logon page, open up a Web browser and replace the “http://127.0.0.1” part of the path with the DNS path name to your CF environment (e.g., http://dev.test-site.com/CFIDE/administrator/index.cfm).
    This should bring up the Coldfusion Administrator Login screen.  Enter in the Administrator password you created during the install to log in and configure your application server.
    Verify that your test-site renders correctly by typing in your test URL into a Web browser (e.g., http://dev.test-site.com).
    Fix Application Pool Defaults to Re-enable SBS Web Applications:
    At this point, Coldfusion Administrator and your test CMFL Web site should be working properly.  The problem is, default SBS Web applications like OWA, RWW and Companyweb will throw errors and fail to start.  Fortunately, this is easily remedied by performing the following steps:
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “True” to “False” this time.  This should re-enable the SBS applications, which would otherwise result in 500 errors (e.g., OWA, RWW, Companyweb, etc.).  There is no need to restart IIS.
    Open a Web browser and test that you can once again connect to OWA, RWW and Companyweb successfully.
    In IIS click to highlight the application pool for your new site (e.g., “test-site”).  In the right-hand pane, click “Advanced Settings”.  Ensure that “Enable 32-Bit Applications” – second item from the top – is set to “True” for this application pool specifically.
    Lastly, jump up and down for joy!  Hopefully now, everything is working.  Best of luck!! ..Paul D (MCP).

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • Animated Gif with large base image & small animated part.

    Hello guys
    I'm not really sure how to explain that, due to my limited English comprehansion. I will try with images.
    I can easily create animated gif out of multiple layers, given each layer is identical, with small changes accuring over time.
    But I yet to figure out an animated gif, that uses one large image for the base, and only small part of it is animated.
    I always get the animated part working, without the large base applying across all the frames. All it does, is flashes once
    the frame is reached and then moves on to being transparent, showing only the small animated part.
    For example, this is a GIF made with Galaxy S4, of my friend playing with his phone, imported into PS CS6. On the Galaxy,
    after I record the GIF, I can use my finder to touch, mask and freez parts I don't want to move, and leave only small, animated bit.
    When I import it to PS, it shows one layer with full image, and bunch of frames with the animation part only.
    http://i.imgur.com/UAiopQA.jpg
    http://i.imgur.com/7XOGGV6.jpg
    Problem is, once the image is open with PS, I'm not able to export it to keep it working in the same manner. Given the Samsung's
    gifs are 8 to 10mb, it's hard to edit it, to make it more size friendly.
    The gif clearly works the way I describe, so there is a setting or method I don't know about.
    If PS is not best tool for editing GIF, what other apps would you recommand I use for it?
    Thank you for the taking the time to read
    best regards
    Monica

    This has been an ongoing issue for me since I switched from Powerpoint to Keynote. Most of the animated gifs with transparent backgrounds that I used with Powerpoint are no longer transparent in Keynote. You may want to search for those earlier threads on this topic...
    To summarize: I've had to open up my animated gifs in After Effects and use the Color Key effect to restore transparency, with mixed success.
    Good luck!

  • Is there a way of working collaboratively on a flex project with a small project group?

    Is there a way of working collaboratively on a flex project with a small project group?
    I am part of a small group of developers who wish to work on a single flex project together. Is there a way to set up flex so that the project can be developed by multiple people at the same time. I have seen one thread out on the internet about working locally and then uploading to SVn but this is not an option in this case.
    Any ideas.
    Many thanks in advance
    Dave

    I would say that rushing into development without a source-control system will cost you more in the long-run. If your organisation is serious about developing software it then it needs to invest in the necesary infrastructure, so you should get that process kicked-off as soon as possible.
    In the interim you could set-up a source control server on one developer's machine or commandeer a spare machine to use as a temporary source control server. Just make sure you have it backed-up regularly. Or you could use one of the online source control services; many will support private repositories for a small fee.

  • L need help with textedit, I inserted a picture then the cursor went from small to the size of picture and l need to write a header next to the picture not at the bottom of it. can anyone help please?

    Can anyone tell me how to make cursor smaller after inserting picture so that l can add somethimg right next to it instead of bottom of picture. Meaning the next line is too low

    AFAIK, you can't. The nature of TextEdit is that it allows the picture to be treated as a character and adjusts the cursor size for that line.
    You need a app that supports transparent overlays.

  • My email shrunk so small that I can no longer read anything.

    I am using a new laptop and am unfamiliar with what key combinations do what. I have seen my email page get larger and smaller and have no idea how I'm doing it. I thought it had to do with the mouse area, but cannot recreate it. My email screen is now so small, that I cannot read it and cannot figure out what I did. I called Toshiba, and they have assistance for Internet Explorer only. :^( HELP!!!
    I also do something that causes a new internet page to open, and something that causes it to show all open pages in thumbnails. There are times when I type an email and I do something and it causes the message to be sent. WHAT AM I DOING???? I feel like an idiot!

    :^( This is the person with the question - I had to log in to Internet Explorer in order to read the email and click the link to get it to post. UGH NO PHONE NUMBERS FOR CUSTOMER SUPPORT. YIKES!!! I MAY NEED A NEW BROWSER.

  • Simulating small branch office in lab network

    Hi,
    I have to setup what seems to be a very basic configuration, but it doesn't work.
    In our lab there is a cluster of switches with a 3550 that does all the routing for vlans.
    I need to simulate a sort of a small branch office that has one connection
    to the outside world (the lab network).
    Here is my design:
    Vlan 230 (the internet)
    A port on 3550 is in vlan 230 and is connected to e0/0 (172.26.230.150) on 2611 router.
    e0/1 interface on a 2611 is (192.168.1.1).
    A PC is connected to e0/1 (192.168.1.12).
    From the router I can ping any host on vlan 230 and other vlans,
    I can also ping the pc connected to e0/1.
    However from the PC I can only ping 192.168.1.1(e0/1) and 172.26.230.150 (e0/0)
    Below is my configuration
    Thanks for your help.
    R2611-1#sh run
    Building configuration...
    Current configuration:
    version 12.0
    service timestamps debug uptime
    service timestamps log uptime
    no service password-encryption
    hostname R2611-1
    ip subnet-zero
    ip dhcp excluded-address 192.168.1.1 192.168.1.9
    ip dhcp pool 192.168.1
       network 192.168.1.0 255.255.255.0
       default-router 192.168.1.1
    interface Ethernet0/0
    ip address 172.26.230.150 255.255.255.0
    no ip directed-broadcast
    no ip mroute-cache
    no mop enabled
    interface Ethernet0/1
    ip address 192.168.1.1 255.255.255.0
    no ip directed-broadcast
    no ip mroute-cache
    ip classless
    ip route 0.0.0.0 0.0.0.0 172.26.230.1
    ip http server
    no scheduler allocate
    end

    You are not performing nat on the router.
    This is typically required on a box which provides internet connectivity.
    Probably the other hosts on vlan 230 have no route back to the pc on 192.168.1.1
    Configuring nat on the router will resolve this problem.
    regards,
    Leo

  • Advice on creating small Mac office network

    Hello there!
    I am setting up a small network for a non-profit organization, and came up with a few problems.
    The main one being that I cannot send anything to print from Mac Minis on groud floor, to printer.
    In order to make myself clear I have produced a graphic scheme of the network set up.
    Everything runs on DHCP, excepto for printer that has a set IP.
    I also wonder if I should change any IP on this network to fixed instead of DHCP...
    Any help: much appreciated!

    It looks like you have set up a basic roaming network. Please double check the following Apple Support article on the details on how these types of networks are configured to make sure nothing was missed when you setup yours.

  • Small branch office network

    We have a small branch office (7 users) that will be moving to a building that has a Wireless Residential Gateway (Model: DPC3829).  This device provides wifi for 2 other tenants on the same floor.  Can we connect another wireless router to this wireless residential gateway device and create our own SSID so that we don't have to use the wifi settings that the other 2 tenants connect to?  
    I've attached a picture of what the back of the DPC3829 currently looks like.  I am thinking I can plug that yellow network cable into another wireless router and create our own wireless network (obviously off of their internet connection) for our 7 users. 
    Thank you for your help.

    u may but any plane wireless device and run it in bridge mode (shouldd run by default i beleive). Then connect one of its lan port to any one of the lan ports available on the DPC3829 thing.
    you are correct in what you want to do, and it can be done no problem.
    Regards
    Please mark answer as correct if it helps.

  • Best practices for setting up users on a small office network?

    Hello,
    I am setting up a small office and am wondering what the best practices/steps are to setup/manage the admin, user logins and sharing privileges for the below setup:
    Users: 5 users on new iMacs (x3) and upgraded G4s (x2)
    Video Editing Suite: Want to connect a new iMac and a Mac Pro, on an open login (multiple users)
    All machines are to be able to connect to the network, peripherals and external hard drive. Also, I would like to setup drop boxes as well to easily share files between the computers (I was thinking of using the external harddrive for this).
    Thank you,

    Hi,
    Thanks for your posting.
    When you install AD DS in the hub or staging site, disconnect the installed domain controller, and then ship the computer to the remote site, you are disconnecting a viable domain controller from the replication topology.
    For more and detail information, please refer to:
    Best Practices for Adding Domain Controllers in Remote Sites
    http://technet.microsoft.com/en-us/library/cc794962(v=ws.10).aspx
    Regards.
    Vivian Wang

  • Using Time Capsule to backup a small office network

    Hi all,
    I am hoping somebody may be able to tell me if this is a good plan or not. I have been really struggling to find a good network backup solution. I've been trying to make a Lacie Ethernet Disc Mini work but have finally given up on that one.
    I am trying to find a simple solution to backup a network of 5 macs. 1 is currently plugged straight into my router, another router port extends to switch in another building which has 4 further macs along with other network devices connected. Crucially, there is no wireless access from this building to the router.
    Would all macs backup to the Time Capsule, including those that are wired via the switch? If so, at what speed? I have heard suggestions that it can be a very slow process?
    I'm not worried about any kind of streaming - purely a good backup device.
    All advice very gratefully received,
    Regards
    Richard

    Hi Richard,
    I have a small business and chose to use Time Capsule as a backup for my company's network. We have 12 workstations and use all Macs, some wireless and some not. I'm an experienced Mac sys admin and have setup many networks, including designing and installing the network we currently have, which is driven by a Leopard Server.
    Based on a year of experience working with Apple's newest airport extreme and capsule products, I would not use them in business and am moving towards a wireless network hd using Carbon Copy Cloner as my software. This is due in part to numerous calls to Apple for support on these items, having to reset them dozens of times, and being told by Apple support that using these products for business is not recommended.
    Carbon Copy Cloner is a great tool for a backup, especially for workstations, as you can create partitions for each computer on your HD and CCC will create *bootable* backups of your HD - a great lifesaver if a computer fails and you don't have time to reinstall everything.
    I will be putting the capsule and extreme devices on Craigslist for sale and hope to recoup enough to get the wireless network drive, which my research shows is the best way to get network backup solutions for small business.
    I hope this helps.

  • Problem using File sharing  in a small office network

    I have a problem using File sharing on an Imac and Macbook Pro.
    My office has a small network running Windows Small office file server 2003. I have one Windows 2000 PC connected to it and 3 Macs, an 2.4 gHz Intel iMac running Leopard 10.5.6 , a MBP running the same and a Mac Mini running 10.5.
    From the Finder Shared window of the Mac Mini, I can see all the computers on the network. It also used to be the case for the iMac, but the MBP could never see the Windows PC’s, not the server or the Win2000. This wasn’t a big problem as I was communicating between the Macs and using the shared printer on the iMac.
    On Monday Jan 19 the iMac was suddenly unavailable to the other 2 Macs. It was working normally on the Friday. The iMac can access the Mac Mini and copy files to it. The Mac Mini can see the iMac but cannot access it. Even trying to connect as, ends in a failed connection. I have tried rebooting, turning File sharing off and then on again to no avail.
    The iMac now also cannot see the Windows PC’s which it previously could.
    To get files from the MBP for printing, I now copy it to the Mac Mini and acces the folder from the iMac, a very tedious procedure. I don’t know why this happened and am scared that the Mac Mini is going to do the same thing.
    All three computers are also running VMware 2.0 with Windows XP pro, and from VMware the server is visible on all the computers.
    Any help will be much appreciated, I live in a small town in South Africa and the local computer suppliers have no knowledge of the Macs.
    I think that the problem with the iMac may have started after a software upgrade to 10.5.6 but I am not entirely sure.
    Thank you
    ajdk

    Well, you're current method sounds pretty good. But if you want to user a file server, hey go ahead.
    What you want to do when you centralize project files is to keep track of which one is the newest and becareful not to overwrite files with the same name. So you either have to set up individual spaces on the server (separate AFP/FTP folders maybe), or you'll need to run a file checkout service.
    The individual space is cheaper, but it's not much of a difference from backing up to the network drive. Since you have Gigabit connections, you might even opt to save ALL the user files on the server instead of just the project files.
    If you want to run a file checkout service, there's two approaches. You can run a service that can host any kind of file, or you can run a version control system for each kind of application (Photoshop, Word, etc.). Please notice, that as you read further and further along, the methods become more and more expensive and complicated. Once you get to this point, it will be necessary to purchase or build software in addition to the Mac OS X Server package.

  • How to setup a small office network

    Hello,
    I am looking to setup a small office network comprising 6 G4 macs (existing computers) that have been upgraded to the newest OS version. What is the best way to go about networking these computers together in terms of being able to share files, internet connection, access to peripherals and also implementing a firewall.
    Any suggestions or help would be greatly appreciated.
    Thank you

    1, Get a cable internet ISP account; depending on your service you should be able to secure a 5Mbps down and 2Mbps up on the cable e.g. Cox or Comcast.
    2. Get a good router. The mass market Linksys and Netgear routers aren't very good in terms of reliability. I use a ZyXEL P-330W router is the best I've ever seen. Its reliable and very efficient in terms of throughout. The Apple Airport Extreme is good.
    3. Set up the router to support UPnP. This way all computers will be able to share iChatAV video conferencing. If you enabled "port forwarding" only one Mac would be able to use iChatAV video conferencing.
    4. Set up your router for DHCP to dynamically issue Internet address to all your computers.
    5. Setup the wireless router for encryption such as WPA. This will encrypt wireless communication.
    6. Setup the wireless router for only your computers. You'll have to get the MAC/AirPort ID network addresses as expressed in terms of an xx:xx:xx:xx address. You can get this thru your Systems Preferences -> Network window -> AirPort (in the sidebar) -> Advanced button.
    7. If you have Ethernet in your office then skip steps 5 and 6 above.
    8. On each computer open up the System Preferences -> Sharing and check-off the File Sharing. Set your user access preferences appropriately.
    9. Get a Network enabled All-in-one printer and setup Printer Sharing options. Hook-it up to your network and add your printer by clicking on the "+" sign in your "Print and Fax" Preferences.
    10. Don't enable Apple Firewall on each Mac. The router will be the Firewall.
    Ok. That's the short-hand.. plug it all in and go!

  • Newb needs help w small office network setup

    Just started a new job at small start-up company that needs their 6-7 macs and a couple of printers networked. I'm just a designer and I'm trying to help but I'm not familiar with osX networking and I hope someone could point me in the right direction. Currently the owner has DSL on all the computers so there is an ethernet cable in each one to a router or hub i believe.
    Currently when I try to connect via Go menu to Connect to server, there is no list. If I type in the name of one of the other computers and try to connect I get:
    "Connection failed. The server may not exist of it is not operational at this time. Check the server name or IP address and try again."
    I don't really know where to start or what questions to ask but I hope having an ethernet cable system already in place is a good thing.
    Your help appreciated

    I'm starting out with 2 computers near me, G4 HOMER
    and G4 MINI. Both are connecting to the net via
    ethernet. Personal File Sharing is ON on both.
    On G4 MINI, I can see G4 HOMER, but when trying to
    connect (Go>Connect to server>G4 HOMER) get
    "ConnectionFailed -Server may not exist or is not
    operational"
    when connecting ot the server try using G4-HOMER.local as the server address.

  • Setting up a small office network - advice needed

    We are to move our small office (3 people) from a shared office environment to our own office space. That has the huge advantage that we´ll finally be Mac-only, but the agreeable disadvantage that there is no longer a networking professional around. And this is where I enter. I now have to find a solution on how to set up the network, and I do not have experience in that field (though I am fairly experienced with OSX).
    As of today we have a G5 iMac, a G4 powermac and a G4 iBook. In the not too far future we will be getting a proper G5 powermac as well.
    The G4 is used for low key office applications, Word and Mail mostly. The iMac is the workhorse that runs all graphic/video applications. It also is used for presentations once in a while, so that this machine is not always available. The iBook is used for writing and e-mail plus some light-weight field editing.
    I would like to find a solution that we could store all important files on one computer, so that it would be easier to make regular back-ups. And everyone could easily access those files.
    It would be great if data from iCal and Adress Book could also be stored centrally, such as that addresses are available for everyone, and updated calenders are available for all employees.
    As the budget should be as small as possible, I was wondering if we could use the G4 powerbook (867mhz, 1gig memory) to run a sharing service in the background. Then I could also install a second harddisk and use both hdd as a backing-up-raid. Once in a while I would make a backup on a external firewire disk.
    Is this a possible solution, or should we rather have one machine dedicated as a server. Would it be sufficient then to use the G4 as that server and buy a MacMini or iMac as the office machine?
    Since it is a small network, would I still need an OSX server license, or is the standard OSX enough for this?
    iMac G5 20, G4 QS 867mhz, iBook G4, PB 190, and a Pentium that I haven't switched on in months...   Mac OS X (10.4.3)   Experienced with technology, just not with networking...

    There are two ways to set up a network:
    1 peer-to-peer
    2 client-server
    Peer-to-peer is cheaper, but not reliable. Apple supports peer-to-peer in OS X. (In fact, in all versions of the Mac OS since System 7.) You can have up to 10 users connected to any one machine using peer-to-peer. (Warning... if you have more than five users, that machine is going to get slow.) The various peers are used as normal workstations while sharing. You have three peers, and may get one or two more, so you can use peer-to-peer. Just don't overdo it. Your planed usage of a few Word docs and a few graphics files sounds about right.
    Under OS X the peers are limited to sharing specific folders only, unless they use 3rd-party software such as SharePoint, which allows the sharing of any and all folders.
    It seems that you plan to use the G4 as a 'server' using peer-to-peer. You also seem to be planing to add additional drives, and RAID. I'd get a high end IDE PCI card, or a FireWire card, or a SCSI card, for the G4. Depending on which G4 you have, you can stick up to four hard drives in the case if you go IDE or internal FireWire or SCSI. External SCSI or FireWire drive configuratins are limited only by the drive slots available (7 for low-end SCSI, 15 for high-end SCSI, 63 for FireWIre) and the space available. (And, of course, the budget availanle...) You can get dedicated RAID controllers.
    For backup I'd get DVD or tape. Tape holds more and is easier to use, but is expensive (you have no idea how expensive, but I suspect you'll find out) and can be finicky. DVD is a lot cheaper, but it's slow, and someone will have to sit and feed discs into the machine. This will get old really fast. If your backup requirements are modest, DVDs might do, but probably you'll need something else. You could just buy an external hard disk and back up to that...
    Apple charges US$500 for OS X Server 10 seat version. (They charge $1000 for the 255-seat version.) OS X Server should run on the G4, and will turn it into a full-fledged server.
    Any of the O'Reilly books on OS X Server and/or on Samba should help you get started. O'Reilly's _Using Samba_ has a section devoted specifically to SMB on OS X Server which should be quite helpful.

  • Randomly monitor small office network

    Looking for a user-friendly, dummy-proof article on creating a small office network from a total of four Mac's (3 iMacs, one Air), allowing the administrator to randomly monitor without detection the real-time activities taking place on the other two machines. Triple points for iOS monitoring capabilities, as well

    Hello, rjbm_exact. 
    You definitely need a managed switch and a Cisco Small Business (200 or 300 series) can meet your requirements. You can setup separate VLAN to segregate user access level. Are you also looking at expanding your wireless (guest access)?
    Let me know if you need more assistance or e-mail ([email protected]) me directly. Kind regards. 

Maybe you are looking for

  • Moving lr from pc to mac

    I have lr 4 on my pc.  I upgraded to lr 5 on my mac.  I have the upgrade, but no catalog.  I went back into adobe and downloaded lr 4 on my mac.  Still no catalog.  Do I have to physically move the catalog from the pc to the mac and then apply the up

  • Partial Refresh from column link

    Hello, I am working on a page with two classic reports. Report A is always displayed and has a column link which sets item Z with a value from a column in report A and then redirects the page to itself. Report B uses item Z in his where clause and is

  • XSQL with jdk1.2.2 - javai.dll error

    I successfully used the xsqlCommandLine utility with jdk1.1.7. When I try with jdk1.2.2, I get an error that javai.dll is not in the path. If I put javai.dll from the 1.1.7/jre/bin in my path, the xsqlCommandLine process runs without end, as if windo

  • Calculated Key Figures question

    Hi In a Purchase Order report I have included a Calculated Key Figures and this report is transported to the QA environment. Then I create another report using the same Calculated Key Figures but when I tried to save the query it gives me an error; "

  • HP L7780 Printing - Two-sided and Multiple pages

    The HP L7780 printer is capable of printing two-sided pages and multiple pages per page (e.g. two-up on a single sheet). This works just fine with my WIndows XP systems, but not with my BRAND NEW Pro! I've installed the latest drivers from HP ... any