Need online multimedia database...

... with user upload of pics, audio, video and text. The ability to annotate pics would be nice.
Each main item page in the database would need to be accessible by:   URL?<target info>
Either a hosted service or a system I can install on my own servers would be great.
Thanks
William

sig wrote: Google, google, google.
Marketing, marketing, marketing.
Or does Google offer this kind of database? What is it called, may I ask?
Can items/pages be password protected?
I would like some first-hand, real-world experiences, if possible, thanks.

Similar Messages

  • Need of logical database

    Hi,
    Can any one briefly explain what is the need of Logical database?
    In which case , abapers r going for logical database?
    regards,
    Pooja

    Hi Pooja,
    A logical database is a special ABAP/4 program which combines the contents of certain database tables. You can link a logical database to an ABAP/4 report program as an attribute. The logical database then supplies the report program with a set of hierarchically structured table lines which can be taken from different database tables.
    GET will fetch the table data immediately
    GET LATE
    In the LDB when you define the table structure in hierarchy, first it will fetch the higher node data and then all the below node tables data and comes to a second record in the top node table. for this GET Late is used.
    You can create any number of primary keys in a table
    The programmer need not worry about the primary key for each table.Because Logical database knows how the different tables relate to each other,and can issue the SELECT command with proper where clause to retrieve the data.
    i)An easy-to-use standard user interface.
    ii)check functions which check that user input is complete,correct,and plausible.
    iii)meaningful data selection.
    iv)central authorization checks for database accesses.
    v)good read access performance while retaining the hierarchical data view determined by the application logic.
    GO THROUGH LINKS -
    http://www.sap-basis-abap.com/saptab.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9bfa35c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9b5e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/8a15381b80436ce10000009b38f8cf/frameset.htm
    /people/srivijaya.gutala/blog/2007/03/05/why-not-logical-databases
    Re: **LDB**
    www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_Logical_Database_FAQ.html
    www.sap-img.com/abap/abap-interview-question.htm
    www.sap-img.com/abap/quick-note-on-design-of-secondary-database-indexes-and-logical-databases.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9b5e35c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9bb935c111d1829f0000e829fbfe/content.htm
    Reward if useful.
    Regards,
    Hemant

  • How to link to online 9iR2 database documentation on OTN

    I'd like to link to online 9iR2 database documentation on OTN. Just by browsing OTN I got, for example,
    http://www.oracle.com/pls/db92/db92.to_toc?pathname=datamine.920%2Fa95961%2Ftoc.htm&remark=docindex
    which, in turn, redirects to to
    http://download-west.oracle.com/docs/cd/B10501_01/datamine.920/a95961/toc.htm
    Which of these links should I use? Which of them is more stable?

    We recommend the use of this URL:
    http://www.oracle.com/technology/documentation/oracle9i.html
    Cheers, OTN

  • I need email whenever database state change in mirroring.

    Hi,
    I  am using SQL server 2005 SP1 in Windows server 2003.
    I need email whenever database state change in mirroring. As per below link I cannot enable Service Broker setting for user database while its enable for msdb.
    http://www.mssqltips.com/sqlservertip/1564/database-mirroring-automating-failover-for-multiple-sql-server-databases/
    Thanks

    http://www.mssqltips.com/sqlservertip/1859/monitoring-sql-server-database-mirroring-with-email-alerts/
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Do I need to restart database in change of spfile?

    Hi
    All,
    Do I need to restart database in change of spfile? my database is in 10.2.0.3 on AIX.
    and one more thing when I do more on spfile it displaying the contents that is readable i am thinking that spfile is binary file so how it can be possible.
    Thanks,
    Vishal

    You may be interested in reading this page
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref438
    SPFILE is a dynamic file so it does not need any sort of server restart.Also though it can be readable by any utility which can read any binary,its not advisable to read spfile like this.The best (recommended ) way is to create a pfile from it and then alter it if you need it.
    Aman....

  • Attach User define tables and view table need add to database into my add-o

    Hi there,
    I want to deploy an addon, there are User define tables and view table need add to database.
    I need some advice on some issues..
    1. Can I attach User define tables and view table need add to database into my addon.
    2. I wonder which chance is properly to add them, if add these user define objects in time of install and I can't get the enough information that connect to SQL server
    Thanks for any help.

    Hi Weerachai,
    Here's an example of how to create a user-defined table in code. My suggestion would be to check if it exists when your add-on starts up and then if not, create the tables, fields and objects.
    'User Table
        Private Sub CreateTable(ByVal sTable As String, ByVal sDescription As String, ByVal oObjectType As SAPbobsCOM.BoUTBTableType)
            Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
            Dim iResult As Long
            Dim sMsg As String
            oUserTablesMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
            If Not oUserTablesMD.GetByKey(sTable) Then
                oUserTablesMD.TableName = sTable
                oUserTablesMD.TableDescription = sDescription
                oUserTablesMD.TableType = oObjectType
                iResult = oUserTablesMD.Add()
                If iResult <> 0 Then
                    oCompany.GetLastError(iResult, sMsg)
                    MessageBox.Show("Error Creating Table: " & sTable & " Error: " & sMsg)
                End If
            End If
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
        End Sub
    'User Field
        Private Sub CreateField(ByVal sTable As String, ByVal sName As String, ByVal sDescription As String, _
                                ByVal iSize As Integer, ByVal aFieldType As SAPbobsCOM.BoFieldTypes, _
                                ByVal aSubType As SAPbobsCOM.BoFldSubTypes, ByVal sLink As String, _
                                ByVal bMandatory As SAPbobsCOM.BoYesNoEnum)
            Dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
            Dim oTable As SAPbobsCOM.UserTable
            Dim iResult As Long
            Dim sMsg As String
            Dim i As Integer
            Dim x As Integer
            Dim bFound As Boolean = False
            Dim oField As SAPbobsCOM.Field
            oTable = oCompany.UserTables.Item(sTable)
            For i = 0 To oTable.UserFields.Fields.Count - 1
                oField = oTable.UserFields.Fields.Item(i)
                'MessageBox.Show(oField.Name)
                If oField.Name = "U_" & sName Then
                    bFound = True
                End If
            Next
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oTable)
            If Not bFound Then
                oUserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
                oUserFieldsMD.TableName = "@" & sTable
                oUserFieldsMD.Name = sName
                oUserFieldsMD.Description = sDescription
                oUserFieldsMD.Type = aFieldType
                If aFieldType = SAPbobsCOM.BoFieldTypes.db_Alpha Or aFieldType = SAPbobsCOM.BoFieldTypes.db_Numeric Then
                    oUserFieldsMD.EditSize = iSize
                Else
                    oUserFieldsMD.SubType = aSubType
                    oUserFieldsMD.Mandatory = bMandatory
                End If
                oUserFieldsMD.LinkedTable = sLink
                iResult = oUserFieldsMD.Add()
                If iResult <> 0 Then
                    oCompany.GetLastError(iResult, sMsg)
                    MessageBox.Show("Error Creating Field: " & sTable & "." & sName & " Error: " & sMsg)
                End If
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserFieldsMD)
            End If
        End Sub
    If you want to create a View I think you would have to use the RecordSet object. This will ensure that you don't have to log in to the database again
    Hope it helps,
    Adele

  • DUPLICATE: NEED TO "DROP DATABASE" BEFORE REFRESH OR CAN REMOVE DATAFILES

    I have TARGET and AUX, i need to REFRESH my AUX, so the question is:
    i need to "DROP DATABASE" or just REMOVE DATAFILES, CONTROLFILES, REDO LOGS?
    Sure, i will create new INIT.ORA , etc...
    Cheers

    Either command will do.
    Hemant K Chitale

  • Do I need start the database before installing Oracle 9iAS portal?

    I found the Oracle white paper which talks about installing
    Oracle8i EE and Oracle 9iAS portal on windows 2000. Based this
    document, after Oracle 8i installaion but before installing
    Oracle 8.1.7.1.1 path, all the Oracle database related services
    startup type have been changed to 'Manual'.
    Based on my understanding, there are some objects will be
    created in this database during the installation of 9iAS portal
    repository. But this oracle white paper didn't say that I need
    have the database ruuning during the 9iAS installation. Do I
    need to start the database before installing 9iAS?
    Thanks

    hi,
    Even i am new to oracle application server and had the same doubt that you have.
    When you install Application Server there would be two tiers installed, application tier and middle tier, these tiers can be running from the same machine or different machines.
    These tiers will have a meta data repository to store application server related data, this database will be installed along with application server.
    It is upto you to install "oracle database 10gR2 " before or after installaion of application server, this will be an independent database which will have its own home, but after this installation you will have three homes, ex: infra_home,mid_home and 10gR2_home.
    by default oracle_home is set to the last installation that happens so if you install the database 10gR2 after installing application server it will point to 10gR2_home, but if you install 10gR2 before and application server later then the oracle home will be infra_home(if both the middle tier and infratier are on the same machine)
    you can always change the oracle home by using set ORACLE_HOME=path/to/oracle/home( in windows)
    or export ORACLE_HOME=path/to/oracle/home (in unix)
    hope this helps....
    regards

  • Do I need online security?

    Do I need online security to shop or bank online?

    You don't, as long as you do not Jailbreak your iPad. I shop and do banking on my iPad.
    Be careful of phishing email.

  • How to make rollback segments online on database startup?

    I create some rollback segments in users tablespace, but how can I auto make these rollback segment online on database startup?
    thanks!!

    Add the name of the rollback segments to rollback_segments parameter in the init.ora file.
    edwin

  • Capture of synonyms from existing online oracle9i database

    Hello!
    I am a newbee in oracle designer .I need to Design capture the ERP application into designer repository.The story goes like this ::
    I am in a scenario where an ERP Application is running but without any documentation and configuration control.The Application is developed using Oracle10g Forms developer and reports,with backend oracle9i.The application and so database contains a lot of user schemas corresponding to the functional departments of organisation like finance , inventory.
    I have successfully Installed the repository (version control option enabled) on our online database('oratest') and created a repository owner 'desg',with DBA Priveleges.
    I have also created a database definition named 'oratest1' and a user named 'desg1' in the design editor's[b] System folder..
    I tried to capture the schemas in following sequence (using the option - Generate/Capture designof/servermodel). ::
    a. Login as Desg , Owner = sys-- Captured all tablespaces
    b. Login as Desg , Owner = desg-- Tried capturing designer objects but was not very successful
    c. Login as Desg , Owner = sys-- Tried capturing all sys objects , It took a lot of time with error and warnings and I was only able to capture some tables and views.I also tried with owner = 'System'.
    d Login as Desg , Owner = sys-- Captured all users from oratest to oratest1(errors displayed 'Invalid grants ')
    e. Login as Desg , Owner = sys-- Captured all roles from oratest to oratest1(errors displayed 'Invalid grants to user objects')
    f. Login as Desg , Owner = User schema1(say inventory) -- tried to capture relational tables,views,functions,procedures etc. A lot of errors saying that invalid references to objects i.e referenced objects not present in the repository.
    g. Noted down all dependencies using the DBA Views to user schema1 and captured corresponding objects from database into corresponding users in the repository.
    h. Login as Desg , Owner = User schema1(say inventory) -- Again tried to capture objects of this schema.It gives error that ' Cannot capture synonyms with same name as objects name, either recreate or make all of them public'.
    Following are my queries for which I need all your expert help::
    1. First of all ,is the sequence in procedure above alright ?.Is it necessary to capture 'SYS' , 'SYSTEM' Objects ..What if I have already done so,will it cause damage? If so is it is possible to remove them from repository automatically?.I captured since the user schemas refer to these objects at several places.
    2. Is it required to capture different User Schemas into different containers or just a single container ? If it is required to capture in different containers , how will tablespaces,users and roles already captured into system folder refer to objects in these containers.
    3.Regarding problem of grants : When are the 'grants' be captured,before the capturing the objects or after them or anytime.Is it required to capture grants via a DDL file . Will a text file generated by export grants option in 'Toad' tool will do the job?.
    4. Regarding Problem of capture of synonyms :: In most of user schemas , the private synonym has same name as the object which it refers.Hence designer is unable to capture the synonyms.If we make Synonyms public for a user schema than what about other schemas?. Secondly how to capture synonyms independently.Is it via a DDL File.Where in the design editor can we see the captured Synonyms?.How Shall we capture Public synonyms of our ERP application.
    5.In the server mode tab, under relational table definition,I can see all the mixture of user tables and sys tables.How can we isolate the tables as per user schemas and generate Server model Diagrams for individual schemas.
    Please help to resolve these Issues.
    Thanks
    With best regards

    Thanks For your reply.
    I am successful in capturing all other objects of the schema.
    Before Your reply and before capturing other objects, I tried to capture the private synonyms by first creating a ddl file and than modifying the SQL 's 'create synonym' statements to 'create public synonym', and than captured the public synonyms into the repository via design editor. In short I captured the private synonyms as public into the repository.It gave 0 error and 0 warnings.
    But where in the navigator pane can i see the captured synonyms. I cannot see any of them, so iam not sure whether they are captured or not.
    After this when I captured other objects , they were captured successfully without any errors.

  • SQL Server 2008 R2: which version of Visual Studio do I need to keep database projects and SSIS projects in the same solution

    I need to build a solution containing a database project and an integration services project for SQL Server 2008R2.  Apparently, the subset of Visual Studio tools that comes with SQL Server 2008R2 does not include database projects and does not have
    Team Foundation Server support.  Because of those limitations, I am trying to determine which version of Visual Studio will allow me to:
    1. Build a single solution that includes both a database project and an Integration Services project
    2. For the database project, be able to import a database schema from an existing SQL Server 2008 R2 database, do schema compares and update the project from the database and vice versa
    3. For the Integration Services project, be able to deploy the packages to SQL Server Integration Services on SQL Server 2008 R2 (that is, to the msdb database).
    4. Use Team Foundation Server for source control of the whole solution, including both project types.

    Hi G Britton,
    To build a solution containing a database project and an integration services project for SQL Server 2008 R2 and use Team Foundation Server for source control.
     You can choose to install Visual Studio 2008.
    And as you want to utilize Schema compare and/or Data compare functionalities in Visual Studio, you will need to install the
    Visual Studio Team System 2008 Database Edition or Visual Studio Team System 2008 Team Suite.
    In addition, for Visual Studio issues, I would like to recommend you post the question in the
    Visual
    Studio forums to get better support.
    Reference:
    Team Foundation Version Control
    Compare and Synchronize Database Schemas
    Interoperability and Coexistence (Integration Services)
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Do i need to bounce database or application after change database

    cache size? i suppose not, but want to confirm.

    Yes, you do need to stop the db (I just stop apps but you could just do the database) to get the settings to take. Check in Task Manager or whatever evil *nix utility (I have no idea and no it's not really evil) is used to check process memory footprint.
    Regards,
    Cameron Lackpour

  • I need a new database engine, can you help?

    Greetings,
    I have a fairly unique application that I need to find a new database for. It currently uses an embedded database but we now want to go client server with it.
    Background:
    The application downloads a large amount of data, millions of records, from a database that runs on an IBM iSeries system. The purpose of the application is to allow the main database to be used at remote locations when a connection to the iSeries is not possible. At a later time the app uploads changed records. We want to go client-server so that the download only has to go to one PC and then other PC's can share the database across a network that our clients will set up at the remote location.
    The trick is in the download performance. When we download from the iSeries we get a binary file that we can read records out of using Java's IO funcationality, one record at a time. We want to avoid having to do a SQL INSERT statement for each of the millions of records we need to place into the database because this tends to be slow. Ideally I'd like to be able to use Java IO to write the database files.
    Do any of you know of a client-server database that allows this to happen?

    The trick is in the download performance. When we download from the iSeries
    we get a binary file that we can read records out of using Java's IO
    funcationality, one record at a time. We want to avoid having to do a SQL
    INSERT statement for each of the millions of records we need to place into the
    database because this tends to be slow. Ideally I'd like to be able to use Java
    IO to write the database files.Most of database(Mysql, Oracle, and so on) will provide dump/load utilization to do that task, and you need to use Java IO to format your binary file to the predefined binary format(maybe csv), then use Runtime.exec() method or batch to import all rows.
    One special client-server database is HXTT Text(http://www.hxtt.com/text.html), which can use directly your binary file as database. If you needn't to merge daily millions of records into the same table, you can try it with its support from http://www.hxtt.com/support.jsp?product=text .

  • I need online Configuration Guide for Catalyst Express 500 Series Switches

    Hi Mates,
    Please is there an online help page for 500 series catalyst
    I have this one for IOS 12.2(25)FY http://www.cisco.com/en/US/products/ps6545/products_configuration_example09186a00806da6c9.shtml
    but I need more detailes like IOS 12.3(7)JA for Aironet 1300 http://www.cisco.com/en/US/products/ps5861/products_configuration_guide_book09186a00804ebd50.html
    Regards
    Saher

    I'm afraid there is not such document for IOS 12.2(25)FY since the Catalyst Express 500 Series switches are manageable through the GUI Device Manager or Cisco Network Assistant.
    I have also found key features and standards supported for that release:
    http://www.cisco.com/en/US/products/sw/iosswrel/ps5012/prod_bulletin0900aecd8033b8b3.html
    Hope this helps

Maybe you are looking for