File storage question.

Hey all,
I have a 250 Gig HD in my IntelliMAC. I also have a LaCie 500 Gig Firewaire drive hooked up. I can't figure out how to tell GB to use the firewire drive as my primary storage drive.... can this be done? it is automatically saving to my desktop....
Thanks,
Gromet

Wherever you save the project when you first start it, that's where it will be. Start each project on an external drive.

Similar Messages

  • Backup amd File Storage Question

    I've got a bit of a conundrum on my hands and can't decide how to clean it up.
    I live in a Mac world and work in a Win world. I made the tranitiin from a dell notebook to a MacBook Air and have a Mac Mini on the desktop at home. I have tons of photos, etc on a NTFS formatted external drive to the tune of maybe 400gb. My wife uses a Win notebook at home.
    Recently, I lost a few days because the format on my MBA went south. I didn't lose any data, but got close as I want to get. Shame on me for not doing time machine backups, lesson learned. The MBA is back on its feet now but I've not done a TM backup on it or my Mac Mini ever.
    I'm not sure what to do regarding my external drive files. I'd like to have access to them, and dragging around an external is a hassle and to complicate it even more, there are times I need both Mac and Win access to the data. Mac can't write to my NTFS drive so I purchased the application paragon for that. I'm not crazy about having to patch the Mac to make it write to the NTFS but do need the occasional Win machine to see the files.
    Considering a Time Capsule, but because I don't understand completely, im stuck. I think I need a Time Capsule for TM backups and a NAS device for static data, but since I'm much more fluent in Win than I am Mac, I thought I'd ask for some education and recommendation here.
    Probably time to cut my rambling post and get some feedback.

    You can use common format drive.. although unfortunately about the only one available is FAT32 which is not at all a great format.
    Using network shares is much better way to go.
    You can plug the drive with all the pictures into a computer, a PC in this case of course, and share that drive with the network. The Mac can then access the drive, read and write files to it, over the network. FIle sharing on the network is offered with a few different protocols, but both Mac and PC can talk windows SMB type.
    Same btw with a disk formatted on the Mac to native Mac standard HFS+ and plugged into the Mac and shared with the network. A PC and read and write files to it via SMB sharing. Simply because it is shared on the network.
    Now a Time Capsule is a wireless router with a hard disk in it. The file sharing side is handled in SMB windows type and AFP which is a Apple Filing Protocol.. see http://en.wikipedia.org/wiki/Apple_Filing_Protocol
    The Mac can talk both AFP and SMB to the TC.
    The Windows computer can talk SMB to the TC. So they have a common method to access files.
    You can then plug a USB drive into the TC.. but it should be Mac formatted, HFS+ (in the mac disk utility this is called
    Format : Mac OS Extended (Journaled)
    The TC can handle FAT32, but that is still to be avoided.. it cannot read or write files to NTFS.
    So the other aspect of this might be remote access.
    If you need access to the TC away from home this is possible via the Apple Back to My Mac and iCloud system.
    Read up about that.
    http://support.apple.com/kb/ht3486
    And the whole icloud thing.
    http://www.apple.com/au/icloud/
    You must use AFP for remote access into the TC.. this is a bit confusing but SMB is not offered to WAN side. It is too risky for one thing. And most ISP block it anyway. AFP is a much more secure protocol.
    That means you cannot access the TC from windows machine.. not that I know of at least remotely.
    Now none of this is impossible without a standard NAS from QNAP or Synology. Just google for those brands.. they are the most popular brands for this task on the market. They both can do Time Machine and talk to Apple computers without trouble.. they also of course talk to PC and you can share files.
    It is going to cost more than a TC.. but it has the following improvements.
    TC is designed primarily as a back up target for Time Machine. It has no way to back itself up. If you store files on the TC it can be difficult to back them up. Especially from the Mac side because TM can NOT read network drives.. only write to them.
    Every NAS made has some method of continually backing itself up as well as raid system to handle disk failure. TC has none.
    NAS will not offer btmm and icloud but will offer FTP SFTP and HTTP and HTTPS access to the WEB for remote connection. None are offered by the TC.
    So there is some rambling. In response to yours.
    Main point.
    In Mac + Win world.. formats of disks are a problem. Neither can speak natively the one the other uses.
    But Networks are the answer. Anything you wish to move or copy or share between Mac and Win is easy over a network, because they are then forced to talk the same language.

  • What's the FASTEST file storage option ?

    Hi all,
    Im building an application in Java where indexing and storing of data is a major area of the app. It should be able to store the data as well as retrieve them rapidly as well as the files should be small in size.
    Knowing Java's popularity with XML, I've chosen that as one candidate, but the problem is Im not too sure how the above 2 criteria will match with XML.
    1) Is XML fast enuf considering retrieval of data ?
    2) And how about the[b] storage sizes ?
    Or should I scrap XML and build my own version file structure such as a B-tree ?
    How difficult would that be considering limited development time ?
    thanx in advance ....

    Anyway to deal with this post piece by piece.
    I agree with you that database infact rules out other
    options when it comes to speed and storage. Im not in
    anyway trying to abuse XML as a storage mechanism. If
    I had the freedom to use a database, I know I wudnt
    even hav posted this question, cos database wins
    hands down in ease of programmin, maintain, store and
    rapid response.
    Okay first of all my post was not a personal attack against you. There are plenty of people who abuse or ty to abuse XML as a storage mechanism with extremely unhappy results. I want to make that point clear not just to you but to any future readers of this thread so that if they are considering such a course of action they should come back to reality.
    It wud be insane to ask the client to
    to install a DBMS jus to make sure the P2P app wud
    run. As for the details about the solution, it is a
    P2P app, but not to share content as such traditional
    ones. Its supposed to help ppl arrive at better
    seacrh results on a Web Search Engine.Well this was dealt with previously. In short using JDBC does NOT imply a full blown database server. It could be a standalone database like Access or you could write your own driver that accesses a proprietary file directly or you could use a plain text driver.
    The point is that if you use JDBC you decouple your application from the storage. This is the important point. Because it means you can switch the storage mechanism as best fits you later without having to rewrite gobs of code.
    >
    As for the requiremtns, I need a storage mechanism
    sm to store the rankings a user might have given
    indivuidually per page or website. I need to store
    them as well as access them anytime I want and share
    them with the peers. Not only rankings I need to
    store other deatils like the search string, the
    datetime of the query etc.All the more reason to look at a database of some sort... an embedded database would be fine.
    >
    I will let you know more of the requiremtns as soon
    on as I advance onto it. Right now Im not
    concentratin on the storage part of it. ( Jus
    thinking of goin ahead with XML ) and rather
    implementing the P2P communication area. I was jus
    doing some research on what would be the best storage
    option for dealing with the app's "data". I read
    on a book that B-Tress and such data structures can
    actually be implemented on file storage thus giving
    better performance. And also I was looking for
    material ( white papers and such ) discussing the
    various issues of each storage option available
    currently which will stand as proof for the final
    solution I am gonna take.
    Okay here is the problem with all this. How do you think databases implement indexes?
    Hint: while it is all in the end vednor specific the answer is some sort of tree structure.
    So again back to the point if you want to write your own tree structure go right ahead... I think it's pointless but go right ahead. What you should do though is write it so that your application accesses this structure through JDBC so that later when you decide that re-inventing the wheel was not such a hot idea you can change the storage implementation without destroying your application.

  • Comparison of file storage/viewing apps

    Does anyone know of a good review site that would compare all the different file storage apps out there? I googled but I couldn't find anything recent.
    Alternately, if you know one that you like, let me know. I have a 1st gen ipod touch so it needs to be compatible with that. Currently I'm using Air Sharing, but I'm annoyed that instead of updating it they've made Air Sharing Pro for a separate price tag. I might upgrade (for emailing of files and better PDF support) but I'd like to scope out the other similar apps before I make a final decision.
    Specific questions about any app: Does it allow emailing of files? Does it have an orientation lock option? How does it handle PDFs?
    Thanks!

    I agree about professional reviews-- that's why my first question was if anyone could point me to a detailed comparison article at a review site. I'd definitely give that more weight than random user opinions, but those can also be helpful in pointing out specific details.
    I'm sorry that I said I was annoyed in my first post-- that was too strongly worded. I just meant that I would have liked to just do a no-brainer update but now that they're all the same price I feel like I need to compare all of them and get the best one, so I don't regret it later and end up buying more than one. My default would probably be to just stick with what I'm using and look into updating it at a later date when if I feel like it isn't working for me anymore, but since its a limited time sale I am putting a couple minutes into posts like this to find out if there's some other app I should be getting instead. I certainly don't mean any offense to you or your company-- its a great app-- but there are competitors with descriptions that are very very similar, and without testing them or reading a detailed review, I don't know if they're better or worse.

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • Can I use one 2tb external hard drive for time capsule and file storage?

    I would like to use time capsule, but also keep the hard drive on my desktop for file storage. Can I do this?

    Apple advises against doing that.
    Any data stored on the disk that Time Machine is backing up to can not be backed up.
    Plus the data outside of the Time Machine backup database cause problems when Time Machine starts cleaned up old backups to recover space for new backups.
    For these reason it is advised that the Time Capsule disk be used for one or the other but not both.
    Allan

  • .tdm file storage vi's slow editing vi's

    I am developing software using Labview 8.5 and have recently added some file storage vi's for the .tdm format for use in DIAdem 10.2.  Upon using the open storage, set file properties, write channel group, write channel, and close storage vi's, the editing has become extremely slow - for any operation I try to perform there is a 10-15seconds delay before it occurs.  If I remove the .tdm vi's from my diagram then the editing goes back to normal and changes/operations occur almost instantaneously as expected.  My project is not large as far as I am concerned (Front panel - 121k, block diagram=1538k, code=0.2k, data=957k, total=2617k, total vi size on disk=389k)
    I saw a similar post to the .tdm storage vi's causing this to occur back in 2005 and was supposed to have  been on the fix list but it does not appear that it has 3 years later.  I am sure many others are using these vi's so not sure what I may have done differently to cause the editing to slow down so much.  
    Anyone with ideas and fix would be greatly appreciated as I cannot afford to sit around 10-15 seconds for every step of my developement.

    Yes, sometimes Storage VIs are slow. But They are Express VIs, supplying the easy configuration for users. If you feel they are too slow, I suggest that you can use TDMS files instead.

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • Azure File Storage - Creating a directory at the root level using REST

    I have a Xamarin / iOS project, and looking to use Azure File Share as a back-end.
    With that in mind, I'm playing around with the REST API and have generally got things working with (a) Blobs and (b) Account-level access to Files.
    Specifically, I can successfully request a list of File Shares, so I have the general call structure worked out.
    However, I'm stumped about the exact incantation necessary to create a new directory at the root level of a share.
    I've tried the following three variants, but all result in Forbidden - Server failed to authenticate the request
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/subdirname1
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:07:25 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/subdirname1\nrestype:directory
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/subdirname1/
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:07:58 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/subdirname1/\nrestype:directory
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare//subdirname1
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:06:16 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare//subdirname1\nrestype:directory
    I did note that trying to get the contents of an (empty) root directory doesn't behave quite the way I'd expect
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/
    request.Query: ?resttype=directory&comp=list
    string to sign: GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:23:17 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/\ncomp:list\nrestype:directory
    Authenticates OK, but generates FAILURE BadRequest - The requested URI does not represent any resource on the server.
    Which is different behaviour from pulling the list of blobs from an empty container (returns 200 with an empty xml list of blobs.
    I've been through the File Service REST API document (dn167006) and found the azurestoragesamples on codeplex, but the former is unclear on working with the root level and the latter is from 2011 and predates File Storage.
    Any insights?

    First, thank you for the quick response and the suggestion about looking at the response content for the string to sign being used. I wasn't aware of that and obviously it's a fantastic resource for figuring this kind of stuff out.
    And what it immediately revealed is it wasn't some subtle oddity in my construction of the STS, it was that I was doing a client.GetAsync(...) and not a client.PutAsync(...). DOH!
    With that sorted, it was trivial to fix.
    In terms of the List Directories and Files, though, there's still a problem.
    FAILURE BadRequest - The requested URI does not represent any resource on the server.
       request.Host: myaccount.file.core.windows.net
       request.AbsolutePath: /myshare
       request.Query: ?resttype=directory&comp=list
       urlQuery: myshare?resttype=directory&comp=list
       string to sign: GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 18:40:04 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare\ncomp:list\nresttype:directory
    The response XML is
    <?xml version="1.0" encoding="utf-8"?>
    <Error>
        <Code>InvalidUri</Code>
        <Message>The requested URI does not represent any resource on the server.\nRequestId:33d61aed-001a-0020-0cbd-51aea8000000\nTime:2014-11-30T18:40:04.9712797Z</Message>
        <UriPath>/myshare</UriPath>
    </Error>
    I originally thought it might be because the share was empty. However, I'm targeting the same share in which I created (apparently successfully) the subdirectory.
    So I'm still confuzzled on that.

  • CCM 2.0 - Files Storage for high volume of files

    Hi all,
    I have seen in one message the following information:
    <i>1. Files storage.
    My point is that I think you've created a virtual folder on the SRM Server in SICF, which means that all your files are stored internally in the database, and not physically on the server.
    The most simple way is to create a physical folder on the server OS, and then create analias in SICF to this folder. You then will be abble to load in mass the pictures on the server using FTP, or network Share.</i>
    I want to upload images in the Catalog (CCM 2.0) and in my case I have high volume of files. Where is the best place to stored this data, in the database or in the server?
    And if it is in the server, how I can create an alias?
    Many thanks!!
    Regards

    Hi ,
    What we had done for image upload for CCM 2.0 was like this:
    1. in SE80 go to MIME repository -> drill down to services -> bc /sap/bsp - >Create a personal folder
    2. Import your image .jpeg in this folder.
    3. Derive an URL with the structue : server name/domain name/services/file name
    4. test this URL in IE browser ,it should open the picture in IE for you.
    5. then paste this URL in the characteristic 'image' of an item in master catalog in CAT
    with this in EBP we could see the photos of the items.
    BR
    Dinesh
    reward if helps

  • HT1752 My MacBook on startup shows file with question mark ,, what now?

    My Mac shows file with question mark, what now.

    Press the power button down to force a emergency use only hardware shutdown.
    Press and hold the Option/alt key on the built in keyboard, boot the machine.
    If MacintoshHD appears, select it and click the arrow, then in System Preferences > Startup Disk reset that. Done.
    Sometimes a NVRAM reset is required then the above done again.
    Folder with question mark issue
    ..Step by Step to fix your Mac
    If MacintoshHD doesn't appear, or if it boots to gray screen or other issues, then it's more complicated of a fix, but once inside OS X then reset the Startup Disk.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    ..Step by Step to fix your Mac
    You might need this if you don't have a recent backup and your problem is software related, Disk Utiltiy can't fix the drive and recommends you backup, erase and install.
    .Create a data recovery/undelete external boot drive
    If Disk Utility + Hardware Test shows no boot drive, then you have a dead drive or cable, or Mac issue.
    My computer is not working, is my personal data lost?

  • A way to qeury Azure File Storage direct from Automation?

    Hello.
    I am trying to create a runbook that will query a list of files in Azure File Storage. This works fine from a powershell prompt on an Azure VM, but it appears the same methods in Azure Automation return different objects:
    Sample code to just list the files in a given folder:
    workflow Get-AzureFileStorageInfo
    # Get Azure File Storage Name and Key
    $storageName = Get-AutomationVariable -Name 'File Storage Name'
    $storageKey = Get-AutomationVariable -Name 'File Storage Key'
    # Get subscription and certificate information
    $subscriptionName = Get-AutomationVariable -Name "Subscription Name"
    $connection = Get-AutomationConnection -Name "Azure Connection"
    $certificate = Get-AutomationCertificate -Name $connection.AutomationCertificateName
    # Set the current subscription
    Set-AzureSubscription -SubscriptionName $subscriptionName -SubscriptionId $connection.SubscriptionID -Certificate $certificate
    Select-AzureSubscription -Current $subscriptionName
    # get azure file storage context and share object
    #$ctx = New-AzureStorageContext $StorageName $StorageKey
    $s = Get-AzureStorageShare -Name $StorageName
    # get list of files from Azure File Storage
    Write-Output "Files in the DEMO folder..."
    $DemoFiles = Get-AzureStorageFile -Share $s -Path "DEMO"
    Write-Output $DemoFiles
    I get this error when I run it:
    6/02/2015 4:54:34 PM, Error: Get-AzureStorageShare : Cannot bind parameter 'Context'. Cannot convert the 
    "Microsoft.WindowsAzure.Commands.Common.Storage.AzureStorageContext" value of type 
    "Deserialized.Microsoft.WindowsAzure.Commands.Common.Storage.AzureStorageContext" to type 
    "Microsoft.WindowsAzure.Commands.Common.Storage.AzureStorageContext".
    At Get-AzureFileStorageInfo:25 char:25

        + CategoryInfo          : InvalidArgument: (:) [Get-AzureStorageShare], ParameterBindingException
        + FullyQualifiedErrorId : 
    CannotConvertArgumentNoMessage,Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet.GetAzureStorageShare
    I am obviously calling it wrong from Azure Automation. Is there sample code online somewhere that can demo the right way to call it? Thanks!
    Matt

    Perfect. That worked! Thanks!
    For others who might be following this I made the change as shown below:
    workflow Get-AzureFileStorageInfo
    # Get Azure File Storage Name and Key
    $storageName = Get-AutomationVariable -Name 'File Storage Name'
    $storageKey = Get-AutomationVariable -Name 'File Storage Key'
    # Get subscription and certificate information
    $subscriptionName = Get-AutomationVariable -Name "Subscription Name"
    $connection = Get-AutomationConnection -Name "Azure Connection"
    $certificate = Get-AutomationCertificate -Name $connection.AutomationCertificateName
    # Set the current subscription
    Set-AzureSubscription -SubscriptionName $subscriptionName -SubscriptionId $connection.SubscriptionID -Certificate $certificate
    Select-AzureSubscription -Current $subscriptionName
    InlineScript {
    # get azure file storage context and share object
    $ctx = New-AzureStorageContext $Using:StorageName $Using:StorageKey
    $s = Get-AzureStorageShare -Context $ctx
    # get list of files from Azure
    Write-Output "Files in the DEMO folder..."
    $DemoFiles = Get-AzureStorageFile -Share $s -Path "DEMO"
    Write-Output $DemoFiles

  • File and question mark when starting

    Flashing file and question marl when i start my computer

    There are four general causes of this issue:
    1. The computer's PRAM no longer contains a valid startup disk setting when there aren't any problems with the disk itself. This can be checked for by pressing the Option key and seeing if the drive appears.
    2. The internal drive's directory structure has become damaged. This requires usage of an alternate bootable system to perform the repair.
    3. Critical system files have been deleted. This requires usage of an alternate bootable system to reinstall them.
    4. The internal drive has died or become unplugged. This is the most likely case if the computer took a sharp impact or there are unusual sounds coming from its location.
    (103563)

  • I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    Have you tried using VLC media player it seems to play almost any codec without converting.
    https://www.macupdate.com/app/mac/5758/vlc-media-player

  • What is the file storage space in macbook air 2012?

    what is the file storage space in macbook air 2012?

    it all depends on what you'll be using it for - how much apps you plan on installing - how much music you have - how much videos you plan on saving in your macbook air.
    i have a 2010 and 2012 Macbook Air - both came with 128GB - for my needs - it's fine.
    As you can see from the image below - that is from my 2012 Macbook Air.  Still have lots of space left.

Maybe you are looking for

  • How to make standard def cable look better on hi-def tv?

    I have a 24" Insignia LED TV model number NS-24E340A13.  When I got it, I did not anticipate that my standard definition cable would not look very good on it.  I have messed with the settings, but it doesn't look any better.  Does anyone have any ide

  • Error occured while deserializing simple transformation program

    Hi, In the SOA Manager( In the CRM PRD system ), when I check the payload trace, the Request is blank and in the Response I find that there are few exceptions 1) CX_SY_CONVERSION_DATA_LOSS: XSLT exception - An error occured while deserializing the si

  • Regarding error in select statement

    Hello CRM Gurus, i have 2 questions to ask from you all:- 1. i am getting a problem of overlapping of values fetched by select statement.. so any idea what shall i do? 2. practically when we use for all entries in select statement if possible explain

  • HT1349 I get error message 4450 when I try to burn a CD.  What is 4450?

    Can someone please help with this error message.

  • Displaying  documents using adf

    hi: i've a table that hase a column that carries the link to the directory where my word documents are stored, iwant to display thsi column as a hyperlink that when user clicks it will open the word file,but when i add href tags around the column val