Questions tagged [metadata]

Meta-data provides information about one or more aspects of the data. Meta-data may refer to either structural metadata (data about the containers of data) or descriptive metadata (data about data content).

Metadata may refer to either descriptive, structural or administrative metadata, which is data about data content.

Descriptive metadata describes elements such as title, abstract, author, and keywords to be associated with a document.

Structural metadata describes the types, versions, relationships and other characteristics of documents.

Administrative metadata provides information such as when and how a document was created, file type and other technical information, and who can access it.

6332 questions
47
votes
4 answers

Sqlite: adding COMMENT ON descriptions to tables and columns?

In MySQL Workbench you can add COMMENTs to tables and columns in a MySQL database. Does Sqlite support adding comments to tables and columns?
warvariuc
  • 57,116
  • 41
  • 173
  • 227
47
votes
5 answers

How do I determine if a column is an identity column in MSSQL 2000?

I want to do this in code, not with ALT+F1.
Bialecki
  • 30,061
  • 36
  • 87
  • 109
44
votes
5 answers

Get metadata from DOI

A digital object identifier (DOI) is a globally unique string that identifies an electronic document (for example, a PDF of an academic article). It essentially provides a method for creating a permalink to a document (for example,…
argentpepper
  • 4,202
  • 3
  • 33
  • 45
43
votes
10 answers

How to Check all stored procedure is ok in sql server?

How to check all stored procedure is ok in sql server if I drop a table or fields?
leo
  • 451
  • 1
  • 4
  • 4
42
votes
3 answers

Adding attributes into Django Model's Meta class

I'm writing a mixin which will allow my Models to be easily translated into a deep dict of values (kind of like .values(), but traversing relationships). The cleanest place to do the definitions of these seems to be in the models themselves, a…
Andrey Fedorov
  • 9,148
  • 20
  • 67
  • 99
40
votes
6 answers

What is metadata in .NET?

I googled several sites to understand what metadata is in .NET and it means. I'm still new to C# WPF desktop application programming. Back when I was web programming, there are meta tag in HTML code where we describe the site with titles, keywords…
KMC
  • 19,548
  • 58
  • 164
  • 253
40
votes
1 answer

Is there any way for the nameof operator to access method parameters (outside of the same method)?

Take the following class and method: public class Foo public Foo Create(string bar) { return new Foo(bar); } So getting "Create" is obvious: nameof(Foo.Create) Is there any way to get "bar" other than using reflection to read the…
Chris Marisic
  • 32,487
  • 24
  • 164
  • 258
40
votes
12 answers

Extracting information from PDFs of research papers

I need a mechanism for extracting bibliographic metadata from PDF documents, to save people entering it by hand or cut-and-pasting it. At the very least, the title and abstract. The list of authors and their affiliations would be good. Extracting…
Christopher Gutteridge
  • 4,425
  • 2
  • 21
  • 20
39
votes
2 answers

Does PNG support metadata fields like Author, Camera Model, etc?

When I click on the image>property>details of a PNG image in Windows many fields are missing compared to a JPEG file. Are these fields supported in PNG? If so, how would they be added in a PNG file programmatically?
techno
  • 6,100
  • 16
  • 86
  • 192
39
votes
13 answers

EF Mapping and metadata information could not be found for EntityType Error

I have encountered an exception when I use Entity Framework 4.0 RC. My Entity Framework model is encapsulated in a private assembly who's name is Procurement.EFDataProvider and my POCO classes are inside of another assembly Procurement.Core The…
38
votes
10 answers

Not enough storage is available to process this command in VisualStudio 2008

When I try to compile an assembly in VS 2008, I got (occasionally, usually after 2-3 hours of work with the project) the following error Metadata file '[name].dll' could not be opened -- 'Not enough storage is available to process this…
Bogdan_Ch
  • 3,328
  • 4
  • 23
  • 39
38
votes
5 answers

Clean out Eclipse workspace metadata

I use multiple workspaces with Eclipse. I recently noticed that some of my workspaces have a lot of cruft in them from software packages that I installed and then later removed. As far as I can tell, the situation is that many packages write stuff…
Ted Hopp
  • 232,168
  • 48
  • 399
  • 521
38
votes
7 answers

How to change metadata with ffmpeg/avconv without creating a new file?

I am writing a python script for producing audio and video podcasts. There are a bunch of recorded media files (audio and video) and text files containing the meta information. Now I want to program a function which shall add the information from…
Stephan Kulla
  • 4,739
  • 3
  • 26
  • 35
37
votes
10 answers

How can I add OS X "tags" to files programmatically?

Since Mavericks, OS X has had the ability to tag & colour files in Finder. Is there any way to add tags to files through Cocoa APIs or via a shell command?
nacross
  • 2,013
  • 2
  • 25
  • 37
37
votes
12 answers

From a Sybase Database, how I can get table description ( field names and types)?

I have access to command line isql and I like to get Meta-Data of all the tables of a given database, possibly in a formatted file. How I can achieve that? Thanks.
aartist
  • 3,145
  • 3
  • 33
  • 31