Database With Video

How Can I Make Database To Video And Emage?
My Project Is Takeing pictures And Video of the body scan To The patients
And Make Record To Evry patient In My Database
Plzzzz Help Me To Do That
1- How Can I Take This pictures And Video From The body scan Machine With A live broadcast
2- And Save It In my Database To This Patient In His Record.
Note
The Output Of The body scan Machine Is S Video.
Thinks For All

Thanks supereno,
i now can play audio/video files through ms-access, But their control seems some how tough( that's to stop the song after had started playing is much harder while the moview so far seem ok.). This gives less control to us. am thinking the files are called by links which by the time being am not exactly sure.
I have inserted the OLE objects(files) through normal insert function of ms access.
am still working on , but am not sure if this will linked to midlets, via odbc and tomcat. Du think can be better way of implementation than this?, I dont oracle in my pc, and i dont have knowledge of it
Thanks again, thanks

Similar Messages

  • DVD with video plus database with nice browserlike interface

    We've created some nice DVD's with menus for chapters and the like. Now the challenge is to create a dvd with video chapters, but also with a link on the DVD menu to a database with a nice graphical browserlike interface. Does anyone have any experience or suggestions here?

    Hi Massimok
    Welcome to the forum.
    There have been quite a few posts about DVD@ccess lately, which is the feature you're probably wanting to use. The problem is this only works on macs. I've not played around with this feature yet but the consensus seems to be that the way to make DVD-ROM features accessible cross-platform is to use eDVD to add/edit this functionality after the VIDEO_TS folder is built.
    I've had no experience with this though so a more informed opinion would be most appreciated.
    Cheers
    B

  • How may I integrate a database with pictures in Muse (to show a catalog)?

    As you may imagine, yes, this question has a hidden background (the e-commerce), of course. Muse is a gold window to all those designers that see it's possible to create a website without using code easily. But, websites need rich content, that change from time to time. I wouldn't deal right now with e-commerce, let's go step by step.
    I am asking about integrating a database with muse, to show a catalog (for example an inventory of products). Let's imagine I want to show only the products I have (but for the moment) I don't want to sell them.
    So I have an access file, with several fields: Product Name, Quantity, Description, Maker, and the last field is an image field showing a picture of the product.
    I have already this database in access and I can open it in access, modify it, watch it, browse my products, etc.
    Now, what I want is Muse show this database in a certain page, so I would like that Muse read my database file from access, and allow me to show the fields from access in the position I want (in Muse) and that include also the image field.
    I want to add two buttons, left, right, to move backwards or forwards thru the registers of my database.
    May I do that in Muse?
    How?

    You can either use object >insert html or an ifame to show the products page that exists on your shopping (server) end.
    For example , if you are using Business Catalyst then you can create products on BC end and then use products module in Muse page. Once the module is used , it would render the products designed.
    Similarly with third party shops , you can use their html output for Muse page.
    You can view the sample videos :
    http://tune.pk/video/1589742/adobe-muse-ecommerce-online-store-setup-by-muse-themescom
    https://www.youtube.com/watch?v=Vs4aSBkXMo0
    Thanks,
    Sanjit

  • Displaying image from Database with php

    Hello everybody,
    I'm working on a website that displays videos courses and tutorials as my final project
    and I'm working with "Flash builder 4" the database with mySQL and the application server with php
    Basically, the goal is to display a datagrid that shows the manager of the website in column all the information stored on the "Course" table
    the structure of the table is :
    Course (id,img,src,title,description)
    -id : primary key
    -img : path to a photo of course {for example picture of JAVA}
    -src : path to the playlist file {xml file}
    -title : String
    -description : String too
    I already succeeded to display all these contents on a DataGrid, but not with the image, I couldn't display an imageon its column using the path stored on the database, I used a DataRenderer to do that, and here is my code for Renderer and the DataGrid.mxml
    CourseGrid.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:courseservice="services.courseservice.*">
    <fx:Script>
    <![CDATA[
    import Renderers.CourseDeleteRenderer;
    import Renderers.CourseImageRenderer;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
    getAllCourseResult.token = courseService.getAllCourse();
    ]]>
    </fx:Script>
    <fx:Declarations>
    <s:CallResponder id="getAllCourseResult"/>
    <courseservice:CourseService id="courseService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:DataGrid x="10" y="10" id="dataGrid"
    creationComplete="dataGrid_creationCompleteHandler(event)"
    dataProvider="{getAllCourseResult.lastResult}"
    width="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="" dataField="img" sortable="false" itemRenderer="Renderers.CourseImageRenderer"/>
    <mx:DataGridColumn headerText="id" dataField="id"/>
    <mx:DataGridColumn headerText="src" dataField="src"/>
    <mx:DataGridColumn headerText="title" dataField="title"/>
    <mx:DataGridColumn headerText="description" dataField="description"/>
    <mx:DataGridColumn headerText="Delete" itemRenderer="Renderers.CourseDeleteRenderer"/>
    <mx:DataGridColumn headerText="Update" itemRenderer="Renderers.CourseUpdateRenderer"/>
    </mx:columns>
    </mx:DataGrid>
    </s:Application>
    CourseImageRenderer.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx"
      focusEnabled="true">
    <mx:Image source="{data}" width="60" height="60"/>
    </s:MXDataGridItemRenderer>
    Result :
    Problem :
    How can I access to the path of the image, I tried to write "data.img" instead of "data" as img is the name of the column in the database that stores the path but it wasn't successful.
    I know that it not complete statement "data" because "data" is a reference to what the DataGrid provides of information that gets from the (CreationComplete) event.
    Question :
    - Can you please help me with this so I can complete displaying images by accessing to what is on the column in tha DB so I can manipulate my datas that is stored there ?
    ==> I still have some questions about the buttons to update and delete datas fomr the DataGrid, but, until now I need to access successfully to the photo and display it
    Thank you,

    Anyone that can help me with this ?
    Please, try this with me, I'm asking Flex developpers this might be easy for you !
    It's just question of how to access the string stored in the variable "data", when I used XML I just type the path to the repeated element like this :
    XML file :
    XML File
    <parent>
    <child>
    <repeated_child></repeated_child>
    <repeated_child></repeated_child>
    <repeated_child></repeated_child>
    </child>
    </parent>
    I used a Model as a reference to the xml file
    and an arrayList as a container of the repeated child
    I just write in the code "data.parent.repeated_child" to access the text in the "repeated_child"
    and here is the code, that I implemented to generate videos from xml file to display a video play list
    Video Playlist code(extract from XML file "data.xml")
    <fx:Declarations>
    <fx:Model id="model" source="assets/data.xml"/>
    <s:ArrayList id="products" source="{model.video}"/>
    </fx:Declarations>
    <mx:List  dataProvider="{products}" labelField="title"
      change="list1_changeHandler(event,List(event.currentTarget).selectedItem)" x="103" y="77" height="350" width="198"/>
    That was my goal to do that with the database.
    Please help me
    If you have other solution I still need it.
    Thank you,

  • Viewing or working with videos in iPhoto

    I downloaded a bunch of pictures and 1 video from my Canon camera and I can't play the video in iPhoto. How do I play it and how do you work with videos?

    Welcome to the Apple Discussions. When you installed Snow Leopard did you select the option to include Quicktime Player 7 in the installation? It would be in the Applications/Utilities folder. If it's not there then do a custom install of SL and select just QT Player 7.
    If it's there then it could be a codec issue as Roddy has already pointed out.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Problems with Video Sound on Treo Pro

    I can not get any sound on my Treo Pro when accessing Video on the Internet, such as YouTube. Can someone solve my problem?
    Thanks
    Post relates to: Treo 800w (Sprint)

    or some mistake I am making?
    You are using an image processing program to edit video. Seriously, use Premiere Pro or any other proper editing tool, if sound is critical and you are working with video that long. All PS is meant to do is edit short DSLR clips, nothing more. Yes, it's some sort of bug/ limitation - you're simply running out of memory somewhere.
    Mylenium

  • Disable calls with video silently in jabber 9.2.6

    Hello,
    My company just bought Jabber 9.2.6 and as an application packager I was selected to create a package that installs Jabber completely silently. I have no problems with the installation but they gave me instructions to select the "Never start calls with video" option and I cannot find how to disable this silently anywhere. I found that for previous Jabber version this was set in the jabber-config.xml file but I cannot find it anywhere in the 9.2.6 install. I thought this maybe was set through the registry but couldn't find any registry keys for this either. the only configuration files I see in Jabber install folder are          "log4cxx.properties", "jabber-config-defaults", "jabber-plugin-config", "jabber-ui-config", "plugin-config" and "StartupHandlerConfig". I couldn't find anything about calls with video in these files. Does anyone have any idea on how to enable this "Never start calls with video" option in Jabber 9.2.6 please?

    Hi Gabriel,
    you should follow instruction from CUCM docs :
    Migration of Cisco Jabber Video SettingsIn Cisco Unified Presence Release 8.x, the Always begin with video muted setting is configured in Cisco Unified Presence Administration under Application > Cisco Jabber > Settings. This setting is not migrated during the upgrade to the current release. In the current release, this setting is configured in Unified Communications Manager as a Cisco Jabber Enterprise Parameter called Never start call with video. The default value for the Never start call with video setting is False. If you want to configure calls to not start with video, you must set the Never start call with video value to True in theUnified Communications Manager Enterprise Parameter configuration window.
    And from Jabber side you should set StartCallWithVideo parameter in jabber-config.xml.
    In short:
    Admin should set Never Start Call with Video parameter to True.
    Admin should set StartCallWithVideo option to False in jabber-config.xml.
    Regards,
    Nebojsa

  • How to use your own database with your users to authenticate in a Web app?

    Hello, everybody!
    I'm starting to write my first web application and I'm going to use JSF, JPA and EJB3 in this application. One of the first things that I have to do on it is the authentication part where I'll have a page with a user name and a password for the user to login. So, as I'm new to all this in Java (I've already implemented this on .NET in the past), I was studying the Java EE 5 Tutorial, especifically the section "Example: Using Form-Based Authentication with a JSP Page". But I saw that the users that the sample application uses come from the file realm on the Application Server. The users are created there and assigned a name, a password and a group. After the users are in the Application Server we can simply uses forms authentication declaratively in the deployment descriptor (web.xml).
    But the problem is that this doesn't work to me as I already have my own database with my users, so I want to use it instead of having to create the users on the Application Server.
    So, I'm asking you how to do that. Of course I'm not expecting that you place the code here to me as I know that such a thing could be complicated. Instead, I'm asking if you know about some tutorial, article, book or something that teaches how to do what I want. But I would like to see theses examples using JSF and/or EJB3 because these are the technologies that I'm using to develop. It's a pity that the Java EE 5 Tutorial doesn't have an example using a custom database as I know that this situation is very common in the majority of web sites.
    Thank you very much.
    Marcos

    From memory, it goes like this... You just create a
    raw jdbc connection on your user database using a
    special "login" DB user account, which has
    permissions only to an "authenticate" stored query,
    which accepts two arguments: username & password, and
    returns a boolean 0 or 1 rows found.When I implemented this in .NET's ASP.NET I had the same solution. I had an special user created in the database that I used to log in. When the real user entered his username and password I was already logged in and I had just to check his username and password agains the right table in my database.
    But that was only possible bacause when I connected to the database using my hidden user, I used the rights APIs in ASP.NET that coordinate the authentication process. This means that before login in, no one could access any resources (pages, atc...). So what I'm saying is that I can't manager this manually in Java. Java has to have some API or whatever to allow me to control the login process programmatically, while letting the Application Server control the access to the resources.

  • DBIF_RSQL_TABLE_UNKNOWN Table AUSPN_V1 does not exist in the database with ID R/3

    Hi All,
    We are encountering numerous short dumps in our system caused by Table AUSPN_V1 does not exist in the database with ID R/3.
    Can anyone advise how to solve the issue? Please find below portion of the short dumps.
    Category               ABAP Programming Error
    Runtime Errors         DBIF_RSQL_TABLE_UNKNOWN
    ABAP Program           SAPLCLVF
    Application Component  CA-CL-CL
    Date and Time          11.06.2014 12:08:28
    Short text
         A table is unknown or does not exist.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLCLVF" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         A table is referred to in an SAP Open SQL statement that either does not
          exist or is unknown to the ABAP Data Dictionary.
         The table involved is "AUSPN_V1" or another table accessed in the statement.
    Source Code Extract
    Line  SourceCde
      104     if dupl = kreuz.
      105       insert auspc_v2 client specified from table auspcv2
      106                              accepting duplicate keys.
      107     else.
      108       insert auspc_v2 client specified from table auspcv2.
      109       if syst-subrc ne 0.
      110         message a585 with tabausp.
      111       endif.
      112     endif.
      113     refresh auspcv2.
      114   endif.
      115   read table auspcv3 index 1.
      116   if syst-subrc = 0.
      117     if dupl = kreuz.
      118       insert auspc_v3 client specified from table auspcv3
      119                              accepting duplicate keys.
      120     else.
      121       insert auspc_v3 client specified from table auspcv3.
      122       if syst-subrc ne 0.
      123         message a585 with tabausp.
      124       endif.
      125     endif.
      126     refresh auspcv3.
      127   endif.
      128   read table auspnv1 index 1.
      129   if syst-subrc = 0.
      130     if dupl = kreuz.
      131       insert auspn_v1 client specified from table auspnv1
      132                              accepting duplicate keys.
      133     else.
    >>>>>       insert auspn_v1 client specified from table auspnv1.
      135       if syst-subrc ne 0.
      136         message a585 with tabausp.
      137       endif.
      138     endif.
      139     refresh auspnv1.
      140   endif.
      141   read table auspnv2 index 1.
      142   if syst-subrc = 0.
      143     if dupl = kreuz.
      144       insert auspn_v2 client specified from table auspnv2
      145                              accepting duplicate keys.
      146     else.
      147       insert auspn_v2 client specified from table auspnv2.
      148       if syst-subrc ne 0.
      149         message a585 with tabausp.
      150       endif.
      151     endif.
      152     refresh auspnv2.
      153   endif.

    Hello
    Please check on transaction SE11 if this table exists and if it is active.
    Also, it may be a database issue. What is your database?
    BR
    Caetano

  • ITunes with videos bad, Music & Regular! Crash, Black Screen, Tagging?

    So i have been using iTunes for ages and have been collection Music's CD's longer and i got to load them to iTunes a while ago. Music works great in iTunes but with my CD's i often got music video's included so i tried to play them and some regular videos in iTunes and got the following problems and issues (Almost all the tested video files was optimised for iProducts (All MP4 format)) :
    Can't use some of my music videos (mp4 format) in itunes but i can in Quicktime (Got black screen but good sound ). I have no idea how they coded iTunes but shouldn't they use the same codec's?.
    iTunes have a tendency to crash if i play music videos in a row. (Like to use random in a music video list, calming in the background. i know it's kind of excessive but i like it).
    Sometimes i need to play through a music video then reverse back to it to get a picture. (Sound works great tho) .
    Laggy! Sometimes the sound get out of sync with video and vice versa. (Usually the beginning.  Has a tendency to catch up but not always, sometimes a middle lane in the video freezes.)
    Can't you tag or sort video files better.? My computer sometimes crashes or get changed so i need to reinstall my media library from a backup. It would immensely help if i could ID3 tag media files the same way i can song so they automatically sort in to music video's, movies and Tv-series (media types!) without forcing me too change it in the advance tap at show more information. (This is off topic but i need this for audiobooks too (iTunes don't got my type of books so i am manually coping them from CD to MP3 format and transferring them to my iPhone))
    So i'm a trial and error person so i worked a little bit with the problems when i had the time and  when finally got somewhere and had some real questions so i created this profile and wrote this post.
    Please read the whole post before you go yelling: -Look at this!, Already Asked!, See this forum! It's your computer! I usually get to the point somewhere on this post. At the bottom of the post i have my current specs for my computer. So here comes the wall of text:
    I started with this http://support.apple.com/kb/TS1718?viewlocale=en_US and http://support.apple.com/kb/TS1717 which is what you get if you search a bit in apple's support site. Tried all the things there. Disabled Direct3D, Tried Safe Mode On (Note: These two made the performance worse not better.), Checked display colour quality (Maxed), Turned on DMA, (A slight improvement still issues.) and finally got to ReadyBoost. I have all my media on an external drive (Aha you says!) and yes i finally figured out that iTunes can't handle files of that size from a regular external (Observe i do not have ReadyBoost on my 1T drive, It says it don't have the necessary performance). So i moved my video files to my internal drive and it significantly improved in problems 2,3,4 (Not gone!), Also noticed that i need to have as short pathway as possible (smaller improvements yet again!) (None of this shows in troubleshooting, Apple needs to read my post i think.)
    I am now browsing web forums for a better suggestions on the problems and found that Apple either did not care about the problems or the members of this or other forums recommended other media player's to use for handling devices and media (MediaMonkey, doubleTwist and so on). Either as to further their own agenda or that they have giving up on iTunes as a media player for large number of media files. (Found a good media tagger, Magic MP3 Tagger, which worked wonders on some of my older albums with no or little information). So back to my problems or questions.
    What can be the trouble with a mp4 format?
    Tendency to crash, is iTunes really that unstable?
    Play through music video to see picture. Really iTunes?
    Laggy! don't know what more to say or fix. (iTunes take to long to buffer (got between 0-15 seconds delay after i come this far, better then before but not great)
    Sort video files better. (Tags). The only format i know to date that instantly recognise what media type it is, some movie format and the ringtone format m3u  (Useful to know is that you can make your own ringtones by creating a ACC with a limited play time in advanced tab (max 30 seconds)  then change the last file ending of the ACC file now created to m3u. Viola! (Don’t forget to change back to the regular playtime on the original file) your custom created ring/smstone in workable and high quality, but i digress).
    Sorry for the long read but i wanted to be as thorough as possible and please forgive any grammar and spelling problems. English is not my native tongue and the spelling checker did not work in my laptop (browser) on this website
    Currently using (The one with iTunes and the external hard drive) (But have had two different computers before with same problem, 1 PC & 1 Mac):
    Screen
    SyncMaster T240
    Videocard
    ATI Radeon HD 4870 (512Mb)
    PC
    ACPI x86
    Motherboard
    ASUSTeK Computer INC (P5G-PRO)
    Memory
    Type DDR2 Dual
    Size 4096 MB
    External Harddrive
    WD Ext HDD 1021 USB Device
    IDE ATA/ATAPI
    Standard-Dual Channel PCI IDE
    Standard-Dual Channel PCI IDE
    Soundcard
    TerraTec Aureon 5.1 PCI
    AMD High Definition Audio Device
    Processor
    Intel(R) Core(TM) 2 Quad CPU Q8200 @ 2,33GHZ

    This problem cropped up for me yesterday. I had just copied a new video to my iTunes library and was testing that it worked properly, but while the sound was playing, the screen was black.
    Pausing/pressing the Play button resolves the issue, until I select a new video/movie to play, when I have to do it again.
    I'm running MacOS X 10.6.6 and iTunes 10.1.1 (4). I tried reinstalling iTunes, with no luck. I also tried the old mainstay of replacing the Preferences file, but that also didn't help.
    There is ONE new wrinkle to this situation. Yesterday, I had installed a new app named AirView to stream videos over AirPlay to my iPad. This works fine, but after this, the issue cropped up, suggesting an AirPlay issue.
    I have two iMacs, so decided to try this situation on the Kitchen iMac and played a video on this other iMac just fine, video and sound. I then started up AirView on the iPad and initiated the video stream to the iPad from the Kitchen iMac. The movie played fine on the iPad. I quit AirView and went back to try the video on the Kitchen iMac, and yes, the video now failed to display until I reselected Computer from the AirPlay menu at the bottom of the screen, or used the pause/play solution, even though Computer was still selected as the default in the AirPlay menu. Doing this once seemed to be enough to resolve the issue for playing all videos on the Kitchen iMac, but not on the Office iMac.
    The only other difference between iTunes on these two iMacs is that one (the Office iMac) is running its videos from a FireWire 800 attached 2TB hard drive, while the Kitchen iMac's contents are on the internal hard drive.
    Deselecting the AirPlay option in Preferences/Devices to start videos correctly on the Office iMac is not a solution, since this iMac serves as our home server for our Apple TV.
    Since I have a practical option, however, and since this issue doesn't affect playing videos remotely using AirPlay, this is now a buggy annoyance, but no longer a problem for me.

  • Firefox 9.0.1 keeps hanging once I access a website with video, when I write e-mails etc. If a press ctrl+alt+del, opens a window to confirm closing, and firefox works again. When I close that confirm window, firefox immediately hangs again.

    It stops working if I access websites with videos, and all sort of more complex flash. It I try to write an e-mail, it also stops. I can't do anything. PC keeps working, though. So I press ctrl+alt+del. It opens that window asking if you want to close all the tabs. I notice that firefox start to work again, behind that window. But, once I close the window, it stops again. Sometimes I can close the tab with the video before it hangs again, which can take a few ctr+alt+del's. It doesn't happen with other browsers! It started 1 week ago. Is it an extension? Or a virus (i use avast)? Thank you!

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Troubleshooting extensions and themes]]
    * [[Managing the Flash plugin]]
    Check and tell if its working.

  • How to keep same database with two different names in SharePoint 2013 for two different applications

    Hi All,
    I have very strange situation.
    I had SP2010 production database(wss_content_contoso) migrated to SP13 few months back to migrate one site collection only while I have 15 site collections stored in this database and created a site contoso.com
    Now, I want to migrate same(wss_content_contoso) SP2010 database to SP13 and want to create contoso2.com.
    I changed database name from wss_content_contoso to wss_content_contoso2 and assigned newID during mount process.
    After this exercise, I don't see any site for contoso2.com and issue seems to be the same database. 
    My question is!!!!
    How I can keep both databases(actually same database with different names) and run both application simultaneously?
    Any help appreciated!!
    Thank you,
    AM
    AM Senior SharePoint Consultant

    You need to run Backup-SPSite/Restore-SPSite on each Site Collection you want to 'duplicate'. You cannot restore the same Content Database to the same farm as the Site Collections have the same GUID, which is stored globally for the farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • I build databases with appleworks over 10 years on my ibook, and continue to add to them. Now I have a macbook pro. How can I translate the databases to a compatible program?

    Over 10 years I have built several databases with Appleworks. Now I have a macbook pro. How can I translate these databases to a 10.6.8 program?

    Thanks Joe, but that won't work. I've finally found a site that answers the question: http://www.wilmut.webspace.virginmedia.com/notes/aw/page1.html
    I can only say that by Apple I have been royally screwed. I'll never buy another mac -- everything I do would simply disappear into cyberspace.

  • How to create a new database after copying an existing database with a new name

    hi
    i have an existing database and want to copy with a new name in sql server 2005 how do it is possible 
    spose
    i have a db name attached in sql server StoreManagementDB now i want to copy this database with all the transactions as StoreManagementDB_1.
    thanks

    Use a two steps to use a backup file to restore a database with a new name.
    ----You need to have a full backup of your database:
    --Step 1:
    RESTORE FILELISTONLY
    FROM DISK = 'C:\bk\TEST.BAK'
    --Find out the LogicalName of data file and log file
    -- in this case: the data file: TEST and the log file LogicalName: TEST_log
    --Both names will be used in the MOVE command
    --Step 2:
    -- Restore the files for test1.
    RESTORE DATABASE test1
    FROM DISK = 'C:\bk\TEST.BAK'
    WITH RECOVERY,
    MOVE 'TEST' TO 'C:\bk\test1_Data.mdf',
    MOVE 'TEST_log' TO 'C:\bk\test1_Log.ldf'
    GO

  • Can I use two different database with DBSystemLoginModule?

    Finally I can login with Database user id by DBSystemLoginModule on Embedded oc4j server.
    But I confused between [b]jazn-data.xml and system-jazn-data.xml.
    Which xml do I have to edit for jdbcUrl and jdbcDriver?
    Now I would like to use two different database(such as only sid is different).
    In this case I want to show specific database name as realm name.
    What should I do?
    When I use DBSystemLoginModule, I edit JdbcUrl in system-jazn-data.xml.
    So can I pass the parameter for sid programmatically?
    And also I tried to run my application with other database with DBSystemLoginModule on Embedded oc4j server.
    I changed few things(jdbcUrl at system-jazn-data.xml,jazn-data.xml in embedded-oc4j-server/config and database connection for BusinessComponents at Project Properties of Model/ViewController.
    But I got some error.
    Did I miss something?
    ----< my error messgae >------
    500 Internal Server Error
    JBO-30003: The application pool (customer.model.datamodel.CMAppModuleLocal) failed to checkout an application module due to the following exception:oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NullPointerException, msg=null     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)     Message was edited by:
    Message was edited by:
    sdcsdc

    I think I understand now, you are modifing the custom login modules configuration within the system-jazn-data.xml file. This is a bit dangerous! Didn't you register the login module in your orion-application.xml? For example, this is the way I do it:
    <web-module id="customProv-web" path="customProv-web.war" />
    <persistence path="persistence" />
    <!--data-sources path="./data-sources.xml"/-->
    <security-role-mapping name="sr_developer">
    <group name="developers" />
    </security-role-mapping>
    <security-role-mapping name="sr_manager">
    <group name="managers" />
    </security-role-mapping>
    <jazn provider="XML">
    <property name="custom.loginmodule.provider" value="true"/>
    <property name="role.mapping.dynamic" value="true"/>
    <property name="role.compare.ignorecase" value="true"/>
    </jazn>
    <!-- Configuring a Login Module in an Application EAR file. -->
    <jazn-loginconfig>
    <application>
    <name>customProv</name>
    <login-modules>
    <login-module>
    <class>oracle.security.jazn.login.module.db.DBTableOraDataSourceLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>data_source_name</name>
    <value>jdbc/OracleDS2</value>
    </option>
    <option>
    <name>roles_fk_column</name>
    <value>userName</value>
    </option>
    <option>
    <name>table</name>
    <value>userinfo</value>
    </option>
    <option>
    <name>groupMembershipTableName</name>
    <value>groupinfo</value>
    </option>
    <option>
    <name>groupMembershipGroupFieldName</name>
    <value>role</value>
    </option>
    <option>
    <name>usernameField</name>
    <value>userName</value>
    </option>
    <option>
    <name>user_pk_column</name>
    <value>username</value>
    </option>
    <option>
    <name>passwordField</name>
    <value>passWord</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    <log>
    <file path="application.log" />
    </log>
    <namespace-access>
    <read-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </read-access>
    <write-access>
    <namespace-resource root="">
    <security-role-mapping name="<jndi-user-role>">
    <group name="administrators" />
    </security-role-mapping>
    </namespace-resource>
    </write-access>
    </namespace-access>
    </orion-application>

Maybe you are looking for

  • Can't create a book in iPhoto 11 (9.5)

    I am trying to create a new book in iPhoto, but when I select New>Book or Share>Create>Book, it opens the book editor (I guess you call it) with a frozen loading image, and that's it. I can't change from hard cover to softcover or wire bound, or sele

  • AWM 10.1.0.4 - Sort Members

    I have noticed in the "help" of AWM 10.1.0.4 that there is a sort members dialog box (where it is also possible to edit the sort criteria). However I cannot locate it in AWM, could be so kind as to help me find where it is located.

  • Message timestamps missing in latest version

    I have "Show timestamp next to instant messages" checked in my IM appearance options but there are no timestamps showing in the new chat bubble version of Skype. How do I get my timestamps back? Solved! Go to Solution.

  • When i am installing any apps or thems in E61i tha...

    iam using NoKIA E61i.why i install any new app or thems form mobile9 or anywhere while installing error occur that content certificate expired.it comes to all app while installing.why it sooo

  • Am i using DBA_FREE_SPACE view correctly ?

    Version : 11.2.0.3 Noticed the below behaviour in both Solaris 10 and Linux 5.4 Trying to find the free space in a newly created datafile +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ I create a new tablespace. No one has started using