active questions tagged metadata - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T12:08:15Zhttp://stackoverflow.com/feeds/tag/metadatahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q0OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?Cade Roux2009-12-03T21:43:00Z2009-12-03T22:16:11Z
<p>Example:</p>
<pre><code>USE AnotherDB
-- This works - same ID as from other DB
SELECT OBJECT_ID('AnotherDB.ASchema.ATable')
-- This works
SELECT OBJECT_NAME(OBJECT_ID('AnotherDB.ASchema.ATable'))
USE ThisDB
-- This works - same ID as from other DB
SELECT OBJECT_ID('AnotherDB.ASchema.ATable')
-- Gives NULL
SELECT OBJECT_NAME(OBJECT_ID('AnotherDB.ASchema.ATable'))
</code></pre>
<p>Obviously the metadata functions expect a current database. The BOL entries typically have language like this for functions like <code>OBJECT_NAME</code> etc.:</p>
<blockquote>
<p>The Microsoft SQL Server 2005 Database
Engine assumes that object_id is in
the context of the current database. A
query that references an object_id in
another database returns NULL or
incorrect results.</p>
</blockquote>
<p>The reasons I need to be able to do this:</p>
<ol>
<li><p>I can't USE the other database from within an SP</p></li>
<li><p>I can't create a proxy UDF stub (or alter anything) in the other databases or in master (or any other database besides my own) to help me out.</p></li>
</ol>
<p>So how can I get the database from <code>OBJECT_ID('AnotherDB.ASchema.ATable')</code> when I'm in ThisDB?</p>
<p>My goal is to take a possibly partially qualified name from a configuration table, resolving it in the current context to a fully qualified name, use PARSENAME to get the database name and then dynamic SQL to build a script to be able to get to the meta data tables directly with <code>database.sys.*</code> or <code>USE db; sys.*</code></p>
http://stackoverflow.com/questions/1828793/what-data-service-is-where0What data/service is where?MrTelly2009-12-01T20:45:06Z2009-12-03T12:35:34Z
<p>What management tools (open source or otherwise) are there to track the location of data, the services that deliver/use that data and the services themselves. If you believe the snake oil a combination of DB, ESB and SOA will deliver anything anywhere, but how do you know what's where. BTW I'm not interested at the WSDL level, I'm thinking of a tool that the users/BA community would populate and use.</p>
<p>A combination of SOA and Database is now the bedrock of most applications, however what used to be called Data Dictionaries, and would now be Service Catalogues? or MetaData repositories still seem to live in purely DataCentric world.</p>
http://stackoverflow.com/questions/1838616/get-meta-information-title-and-all-images-of-any-webpage-using-php0Get meta information, title and all images of any webpage using phpavinash2009-12-03T08:58:07Z2009-12-03T09:10:14Z
<p>Hi Friends,</p>
<p>I want to get all the meta information like description, title, keyword etc of any web page using php.</p>
<p>I am using <code>*get_meta_tags*</code> php function but its displaying warning. I have paste the error below.</p>
<p><strong>Warning: file_get_contents() [function.file-get-contents]: php_network_getaddresses: getaddrinfo failed: No such host is known. in filename......</strong></p>
<p>And how could i get all images on the web page.?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1596321/enterprise-search-web-service-in-sharepoint0Enterprise Search web service in SharePointaka2009-10-20T18:02:15Z2009-12-02T13:00:07Z
<p>Hello,</p>
<p>I have a question to Enterprise Search in SharePoint. I use this functionality over web service (.../_vti_bin/search.asmx). There are some standart set of attributes (Name, Title...) returned as search result. For more attributes I created new "Metadata Property Mappings" and started full crawl, to be sure attributes in index will be updated. So here my questions:</p>
<ol>
<li><p>Some of the attributes are in search results empty (for example property mapped on ows_BaseName). Is it a security issue?</p></li>
<li><p>I need uniquely identify object returned from search (to this time only files). So I want to use ows_GUID, because I need to get more informations from list service about this object. But I can't find property ows_GUID in list of properties in "Metadata Property Mappings". Can I map any property?</p></li>
<li><p>Actually if I could map all properties in "Metadata Property Mappings", I didn't need to use extra call on List web service. But if I can't, how can I uniquely identify object returned from search service to query a List service?</p></li>
</ol>
<p>Regards</p>
<p>Anton Kalcik</p>
http://stackoverflow.com/questions/1813427/extracting-information-from-pdfs-of-research-papers2Extracting information from PDFs of research papersChristopher Gutteridge2009-11-28T19:03:42Z2009-12-02T01:22:45Z
<p>I need a mechanism for extracting bibliographic metadata from PDF documents, to save people entering it by hand or cut-and-pasting it.</p>
<p>At the very least, the title and abstract. The list of authors and their affiliations would be good. Extracting out the references would be amazing.</p>
<p>Ideally this would be an open source solution. </p>
<p>The problem is that not all PDF's encode the text, and many which do fail to preserve the logical order of the text, so just doing pdf2text gives you line 1 of column 1, line 1 of column 2, line 2 of column 1 etc.</p>
<p>I know there's a lot of libraries. It's identifying the abstract, title authors etc. on the document that I need to solve. This is never going to be possible every time, but 80% would save a lot of human effort.</p>
http://stackoverflow.com/questions/1822881/xml-schema-format-for-representing-a-generic-file-format1XML schema/format for representing a generic file format?psm3212009-11-30T22:30:49Z2009-11-30T22:35:13Z
<p>Is there an existing XML schema that can be used to describe a generic file format? Something that would have tags that say things like "The file has a header that is x bytes long", "The first element of the header is a 4 byte unsigned integer that represents the length of the file", etc. ? I need a format of this sort and wanted to make sure there was not an existing standard one before I come up with one myself, since it seems like the kind of thing that might already be out there. Unfortunately, my Google searches have led me nowhere, but I don't know if that's because there's nothing out there or I just don't know the right search terms.</p>
http://stackoverflow.com/questions/1104763/programmatically-replacing-linked-server-references-with-local-database-reference0Programmatically replacing linked server references with local database references in SQL Server stored procs?kronoz2009-07-09T15:46:46Z2009-11-29T17:41:32Z
<p>As a part of a scripted procedure I'm trying to <em>programmatically</em> update references to linked servers in stored procs. We have several references like this:-</p>
<pre><code>SELECT foo, bar
FROM [Server].[Database].dbo.[Table]
</code></pre>
<p>Which I would like to translate to:-</p>
<pre><code>SELECT foo, bar
FROM [Database].dbo.[Table]
</code></pre>
<p>I would like to do this entirely programmatically in a 'fire and forget' script across several databases.</p>
<p>The idea I have right now is to use metadata to find references to linked tables, read the text of each sp from metadata again, adjust each sp's text, then shove each block of updated text into an exec statement to rebuild 'em one-by-one.</p>
<p>I do wonder whether this will be a humongous pain however, so does anybody have any better ideas? I am open to using powershell if that could provide a better solution.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/639156/make-svcutil-pick-up-documentation-from-c-files1Make svcutil pick up documentation from C# files?marc_s2009-03-12T15:25:33Z2009-11-27T16:11:17Z
<p>Folks,</p>
<p>I'm creating a new WCF Service and started with my Service interface. Looks something like:</p>
<pre><code> public interface ISomethingService
{
/// <summary>
/// some description
/// </summary>
/// <version>2.13.0</version>
/// <copyright>2009 by myself</copyright>
/// <author>Marc Scheuner</author>
/// <param name="request">The request object</param>
[OperationContract]
SomethingResponse GetList(SomethingRequest request);
}
</code></pre>
<p>Now, I also created some data contracts in another file describing the SomethingRequest and SomethingResponse messages.</p>
<p>I compiled my project and fired up svcutil.exe to extract the metadata (WSDL and XSD) from the DLL - but I can't seem to figure out if there's a way to get all my comments and explanations into the WSDL/XSD into / nodes.</p>
<p>Am I blind for yet another obscure svcutil.exe parameter, or is there really no way to generate this documentation in the metadata automatically??</p>
<p>EDIT: ok, based on Marc Gravell's answer, the comments and documentation strings aren't in either the compiled DLL, nor available over the MEX metadata exchange protocol (pity!).</p>
<p>SO THEN: How do you document your WCF services, if you need to give a third-party the information they need to access your service?? Is there a "NService" or "Sandcastle for WCF" tool around that would scan my WCF service library and construct the WSDL and XSD from source code, including the annotations??</p>
<p>Can't seem to find a whole lot of tools and ways to do this - to my big surprise, honestly....</p>
<p>Marc</p>
http://stackoverflow.com/questions/1800930/getting-class-field-names-and-table-column-names-from-nhibernate-metadata0Getting class field names and table column names from NHibernate metadataDylan2009-11-26T00:34:24Z2009-11-26T01:12:42Z
<p><strong>Background</strong></p>
<p>I am using a legacy database with all kinds of ugly corners. One bit is auditing. There is a table listing tablename/field combinations of fields that should have an audit trail. For example, if there is a row that has "WORKORDER" for the table name and "STATUS" for the fieldname, then I need to add row(s) to the auditing table whenever the Workorder.Status property changes in the application. I know the approach: NH events or interceptors, but I've got an issue to figure out before I get to that stage.</p>
<p><strong>Question</strong></p>
<p>What I need to know is how to get a list of key/value pairs for a single persistent class containing (a) the database field name and (b) the associated property name in the class. So for my example, I have a class called Workorder associated with a table called (no surprise) WORKORDER. I have a property on that Workorder class called CurrentStatus. The matching property in the WORKORDER table is STATUS. Notice the mismatch between the property name and table column name? I need to know the property name to access the before and after data for the audit. But I also need to know the backing column name so that I can query the stupid legacy "AuditTheseColumns" table.</p>
<p><strong>What I've tried</strong></p>
<p>in my application I change the Workorder.CurrentStatus from "TS" to "IP". I look in my audit tracking table and see that the WORKORDER.STATUS column is tracked. So after calling Session.SaveOrUpdate(workorder), I need to find the Workorder property associated with the STATUS column and do a Session.Save(auditRecord) telling it the old ("TS") and new ("IP") values.</p>
<p>As far as I can tell, you can get information about the class:</p>
<pre><code> var fieldNames = new List<string>();
IClassMetadata classMetadata = SessionFactory(Resources.CityworksDatasource).GetClassMetadata(typeof(T));
int propertyCount = 0;
foreach (IType propertyType in classMetadata.PropertyTypes)
{
if (propertyType.IsComponentType)
{
var cp = (ComponentType)propertyType;
foreach (string propertyName in cp.PropertyNames)
{
fieldNames.Add(propertyName);
}
}
else if(!propertyType.IsCollectionType)
{
fieldNames.Add(classMetadata.PropertyNames[propertyCount + 1]);
}
propertyCount++;
}
</code></pre>
<p>And information about the table:</p>
<pre><code> var columnNames = new List<string>();
PersistentClass mappingMeta = ConfigureCityworks().GetClassMapping(typeof(T));
foreach (Property property in mappingMeta.PropertyIterator)
{
foreach (Column selectable in property.ColumnIterator)
{
if (columnNames.Contains(selectable.Name)) continue;
columnNames.Add(selectable.Name);
}
}
</code></pre>
<p>But not at the same time. Any ideas? I'm at a loss where to look next.</p>
http://stackoverflow.com/questions/1786531/c-library-for-editing-photo-tags-et-cetera-compatible-with-live-photo-gallery1C#: Library for editing photo tags, et cetera, compatible with Live Photo GallerySvish2009-11-23T22:32:53Z2009-11-23T23:48:45Z
<p>Are there any good .net libraries I can use to read and write tags, people tags, date take, et cetera that are compatible with Windows Live Photo Gallery?</p>
http://stackoverflow.com/questions/1786419/how-can-i-read-the-documentation-from-a-class-in-another-class1How can I read the documentation from a class in another class?The WebMacheter2009-11-23T22:11:44Z2009-11-23T22:16:22Z
<p>Hi all.</p>
<p>let's say I have class A and class B. Class A's definition is:</p>
<pre><code>/// <summary>
/// This is the class documentation.
/// </summary>
public class A
{
/// <summary>
/// This is the documentation for attribute.
/// </summary>
public int attribute;
...
}
</code></pre>
<p>I want to access the documentation from class A (ie. those strings that read 'This is the class documentation.' and 'This is the documentation for attribute.') in class B programatically. Is there a way to do this? using reflection, perhaps?</p>
<p>Thanks for your help :)</p>
http://stackoverflow.com/questions/1782814/occi-querying-for-metadata-of-a-stored-procedure-within-a-package1OCCI: Querying for metadata of a stored procedure within a package ingt2009-11-23T12:19:19Z2009-11-23T15:39:35Z
<p>I am trying to get metadata about parameters of a stored procedure that is defined in a package using C++ Oracle OCCI. Getting parameter metadata of a standalone proc is straightforward:</p>
<pre><code>MetaData meta = connection->getMetaData("MY_PROC");
vector<MetaData> params = meta.getVector(MetaData::ATTR_LIST_ARGUMENTS);
</code></pre>
<p>However, if I try to query the parameter metadata from a procedure that is within a package with the below code, I get an error.</p>
<pre><code>MetaData meta = connection->getMetaData("PKG_MY_PACKAGE.MY_PROC2");
</code></pre>
<p>The error message:</p>
<pre><code>ORA-04043: object PKG_MY_PACKAGE.MY_PROC2 does not exist
</code></pre>
<p>Any idea why this is not working or do I need to query for stored procedure parameters that are defined within a package differently?</p>
http://stackoverflow.com/questions/1779743/adding-a-column-to-all-user-tables-in-t-sql3Adding a column to all user tables in t-sqlseraphym2009-11-22T19:45:40Z2009-11-22T20:00:39Z
<p>I need to add a delete flag column to all 40 user tables in a database. I could write a script to loop through sys.tables, but I thought I'd check and see if anyone has either a better solution, or pre-created sql for this scenario.</p>
http://stackoverflow.com/questions/1765968/php-domdocument-getelementsbytagname-not-finding-elements1PHP DOMDocument GetElementsByTagName Not Finding ElementsJonathan Kushner2009-11-19T19:36:46Z2009-11-21T18:08:23Z
<p>I have an HTML page containing alot of meta tags and I want to parse them to find certain ones. Here is the code I am using, but it's not picking up any of the tags.</p>
<p><code>
$dom = new DOMDocument();<br>
$dom->preserveWhiteSpace = false;<br>
$dom->loadHtml($contents);<br>
$metaChildren = $dom->getElementsByTagName('meta');<br>
var_dump($metaChildren);
</code></p>
<p>Here is a snippet of the HTML I am using (I replaced the arrow with a brace):</p>
<p><code>
[meta name="GZPlatform" content=" pc"]<br>
[meta name="GZFeatured" content=" Gone Gold"]<br>
[meta name="GZHeadline" content=" pc"]<br>
[meta name="GZP_ID" content=" pc 21153"]<br>
</code></p>
<p>Any Ideas?</p>
http://stackoverflow.com/questions/1765815/error-on-getting-avi-file-duration0Error on getting AVI file durationsmok12009-11-19T19:14:56Z2009-11-20T12:08:13Z
<p>I am using VFW unit from JEDI wrapper on WinAPI.</p>
<p>The code I am writing is intended to search user drives and detect warez. We do MP3, WMA and some graphic file search. Now we want to detect illegal movies. I want to open AVI file, read some details from it and close it. I have the following code:</p>
<pre><code>uses WFV; //from JEDI api wrappers
procedure TForm1.Button1Click(Sender: TObject);
var
lInfo : TAVIFILEINFO lFile : IAVIFILE;
lFileType : string;
lLenMinutes : integer;
lFPS : integer;
begin
{init file}
AVIFileInit;
{Open file - note: since we search for warez this is perfely "warezy" file}
AVIFileOpen(lFile, 'e:\Sideways KLAXXON\Sideways KLAXXON.avi', OF_READ, nil);
{Get file info}
AVIFileInfoW(lFile, lInfo, sizeof(lInfo));
lFPS:=Round(lInfo.dwRate /lInfo.dwScale);
lLenMinutes := Round(lInfo.dwLength / lFPS / 60);
lFileType := lInfo.szFileType;
{just for show: prepare some memo to see what we get}
memo1.Lines.Clear;
memo1.Lines.Add('File lenght [min]: ' + IntToStr(lLenMinutes));
memo1.Lines.Add('Width: ' + IntToStr(lInfo.dwWidth));
memo1.Lines.Add('Height: ' + IntToStr(lInfo.dwHeight));
memo1.Lines.Add('File type: ' + lFileType);
{Closing the file}
AVIFileRelease (lFile);
{and here goes the crash}
FreeAndNil(lFile);
end;
</code></pre>
<p>There are two problems:</p>
<ol>
<li>The lLenMinutes is something equal
to 98 while the movie is about two
hours. dwRate is 1 million and
dwScale is 40k, so the FPS is
perfectly 25. <a href="http://msdn.microsoft.com/en-us/library/dd756798%28VS.85%29.aspx" rel="nofollow">MSDN says</a>: “The units
are defined by dwRate and dwScale”. </li>
<li>The code crashes on FreeAndNil line.
Why? I assume I am responsible for
freeing lFile (and at least I feel
supposed to release file). Without
line with FreeAndNil, I have Acces
Violation on exit from a procedure.</li>
</ol>
<p>So, do you have any clue how to correctly obtain movie duration from AVI file? And why the crash?</p>
<p><strong>Edit</strong></p>
<p>The movie is 2hours one minute, so the result should be really close to 120.The lFile is declared in Jedi as:</p>
<pre><code>IAVIFile = interface(IUnknown)
</code></pre>
<p>the AVIFileOpen is declared in JEDI as:</p>
<p>function AVIFileOpen(var ppfile: IAVIFILE; szFile: LPCWSTR; uMode: UINT; lpHandler: PCLSID): HResult; stdcall; external AVIFILDLL name 'AVIFileOpenW';</p>
<p>and in MSDN:</p>
<p>STDAPI AVIFileOpen(
PAVIFILE *ppfile,
LPCTSTR szFile,
UINT mode,
CLSID pclsidHandler
);</p>
<p>MSDN says: </p>
<blockquote>
<p>"The AVIFileOpen function opens an AVI
file and returns the address of a file
interface used to access it."</p>
</blockquote>
<p>so I assume object is created by this function.</p>
<p><strong>Edit 2</strong></p>
<p>The avi file length has been move to <a href="http://stackoverflow.com/questions/1770078/getting-avi-file-duration">new question</a>, since mghie answered this question.</p>
http://stackoverflow.com/questions/1765713/how-can-i-programmatically-retrieve-the-alter-view-script-for-a-view-in-sql-serve0How can I programmatically retrieve the alter view script for a view in SQL Server 2005.Matthew Vines2009-11-19T18:58:15Z2009-11-19T21:45:49Z
<p>We allow our uses to alter certain views for reports and what not based on some application field meta data that we keep track of in our application. These fields can be created at run time. I have a standard process in place to alter the views when a field is added or removed. I now need to do this programmatically however, which means I need to be able to pull the current Alter view script, make my modifications, and then execute it against the database. The last two steps are easy enough, but the first part is giving me some trouble.</p>
<p>Design decisions aside (as they are out of my hands in this particular instance). I would like to know how to retrieve the Alter view script that Sql server management studio uses for the View->Edit command. </p>
<p>I require the exact same output as that command because I have comment hooks in my scripts that allow my edits to occur.</p>
<p>Related questions, but not quite what I am looking for.</p>
<p><a href="http://stackoverflow.com/questions/467482/how-do-i-programmatically-retrieve-sql-server-stored-procedure-source-that-is-ide">How do I programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui?</a></p>
<p><a href="http://stackoverflow.com/questions/21547/in-mssql-how-do-i-generate-a-create-table-statement-for-a-given-table">In MSSQL, how do I generate a CREATE TABLE statement for a given table?</a></p>
http://stackoverflow.com/questions/1755185/how-to-add-comments-to-a-jpeg-file-using-c1How to Add 'Comments' to a JPEG File Using C#John P2009-11-18T10:51:43Z2009-11-19T17:06:13Z
<p>Within the property window of a JPEG image, there is a tab called 'Summary'. Within this tab, there is a field called 'Comments' I would like to write some c# code which will add a given string to this field e.g "This is a photo".</p>
<p>Does some kind soul out there know how to do this?</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/608733/microsoft-sql-server-who-created-a-stored-procedure4Microsoft SQL Server - Who created a Stored Procedure?B. Tyndall2009-03-03T23:50:24Z2009-11-19T08:55:17Z
<p>Is there a good way to tell who created a stored procedure in SQL Server 2005 (that also works in 2008)? In SQL Management Studio I can right mouse/properties on a proc to get the created date/time but how do I discover the creator?</p>
http://stackoverflow.com/questions/1289816/can-mercurial-be-made-to-preserve-file-permissions4Can Mercurial be made to preserve file permissions?Norman Ramsey2009-08-17T19:05:38Z2009-11-19T07:13:12Z
<p>I've seen a number of blog posts, and have experienced for myself, that Mercurial does not preserve the permissions on files pushed from one repo to another. Does anyone know of a Mercurial extension that would preserve the permissions? (I'm assuming it can't be done wit a hook, because what does a hook know about permissions at the originating repo?)</p>
<p>Requested elaboration:</p>
<ul>
<li><p>If the only change to a file is a change in permissions (e.g., <code>chmod o+r filename</code>), attempts to commit the file fail with a message saying that the file has not changed.</p></li>
<li><p>If I commit a file with permissions 600 (rw-------), then clone the repo, the same file in the clone has permissions 664 (rw-rw-r--):</p>
<pre><code>: nr@yorkie 6522 ; hg clone one two
updating working directory
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
: nr@yorkie 6523 ; ls -l one two
one:
total 4
-rw------- 1 nr nr 8 Aug 18 21:50 foo
two:
total 4
-rw-rw-r-- 1 nr nr 8 Aug 18 21:51 foo
</code></pre></li>
</ul>
<p>This examples shows that <code>hg clone</code> does not preserve permissions, but <code>hg push</code> does not preserve them either.</p>
<p>In my application, one repo is on a publically accessible path, and it's of major importance that</p>
<ul>
<li><p>Multiple users have the right to change the repo</p></li>
<li><p>Files in the public repo become readable only when explicitly made readable.</p></li>
</ul>
http://stackoverflow.com/questions/1742965/how-to-read-metadata-values-from-silverlight-client-with-ria-services0How to read Metadata values from Silverlight Client with RIA ServicesNick Gotch2009-11-16T15:39:20Z2009-11-16T18:59:06Z
<p>I have an RIA Services Silverlight 3.0 app using an EF model. In the model metadata I've included several Display Name properties that I'd like to use when referring to the model on the client-side (in TextBoxes, etc.. .)</p>
<p>I'm using reflection now to get the properties of the model on the client so that if the model changes over time, I don't need to update the client code. I just can't figure out how to access the metadata.</p>
<pre><code>private void Field_Loaded(object sender, RoutedEventArgs e)
{
System.Reflection.MemberInfo[] members = this.ModelType.GetMembers();
foreach (System.Reflection.MemberInfo member in members)
{
System.Reflection.PropertyInfo property = member as System.Reflection.PropertyInfo;
if (property != null && property.PropertyType == typeof(System.String))
{
ComboBoxItem item = new ComboBoxItem();
item.Content = property.Name; // <--- This is where I want to use Display Name
this._field.Items.Add(item);
}
}
}
</code></pre>
<p>Thanks in advance,</p>
http://stackoverflow.com/questions/1695920/metadata-for-columns-in-sqlite-v2-8-php52Metadata for columns in SQLite v2.8 (PHP5)Kristoffer Bohmann2009-11-08T09:59:34Z2009-11-14T09:57:21Z
<p>How can I get metadata / constraints (primary key and "null allowed" in particular) for each column in a SQLite v2.8 table using PHP5 (like mysql_fetch_field for MySql)?</p>
<p><code>sqlite_fetch_column_types</code> (OO: <code>$db->fetchColumnTypes</code>) only gets column name and datatype:<br>
<a href="http://dk.php.net/manual/en/function.sqlite-fetch-column-types.php" rel="nofollow">http://dk.php.net/manual/en/function.sqlite-fetch-column-types.php</a></p>
<p>SQLITE_MASTER has the info - but not as a variable. Example:<br>
<code>SELECT name FROM SQLITE_MASTER;</code></p>
<p>... SQLITE_MASTER only outputs an array with this structure (v2.8):</p>
<pre><code>[type] => table
[name] => foo
[tbl_name] => foo
[rootpage] => 3
[sql] => CREATE TABLE foo ( id INTEGER PRIMARY KEY, name CHAR(255) )
</code></pre>
<p>(And what is "rootpage"?)</p>
http://stackoverflow.com/questions/1729996/list-of-foreign-keys-and-the-tables-they-reference2List of foreign keys and the tables they referencestimms2009-11-13T15:37:45Z2009-11-13T18:31:44Z
<p>I'm trying to find a query which will return me a list of the foreign keys for a table and the tables and columns they reference. I am half way there with </p>
<pre><code>SELECT a.table_name,
a.column_name,
a.constraint_name,
c.owner
FROM ALL_CONS_COLUMNS A, ALL_CONSTRAINTS C
where A.CONSTRAINT_NAME = C.CONSTRAINT_NAME
and a.table_name=:TableName
and C.CONSTRAINT_TYPE = 'R'
</code></pre>
<p>But I still need to know which table and primary key are referenced by this key. How would I get that?</p>
http://stackoverflow.com/questions/1730043/find-if-column-has-a-sequence3Find if Column Has A Sequencestimms2009-11-13T15:44:37Z2009-11-13T16:00:48Z
<p>I am attempting to figure out if a column in oracle is populated from a sequence. My impression of how oracle handles sequencing is that the sequence and column are separate entities and one needs to either manually insert the next sequence value like</p>
<pre><code>insert into tbl1 values(someseq.nextval, 'test')
</code></pre>
<p>or put it into a table trigger. Meaning that it is non-trivial to tell if a column is populated from a sequence. Is that correct? Any ideas about how I might go about figuring out if a column is populated from a sequence?</p>
http://stackoverflow.com/questions/1719872/c-solution-for-analysing-files-as-they-are-written-modified1C# solution for analysing files as they are written/modifiedSmurf2009-11-12T04:25:17Z2009-11-12T04:34:09Z
<p>I have several projects that require me to monitor files, and then edit them as they are getting written to disk. I have a feeling that what I am looking for is operationally the same as how anti-virus tools operate. Let me give more details:
1) I need to trap all files saved by Office application, and then add specific company tags to the headers/footers of each document as they are getting written to disk.
2) I need to know immediately when an editable file (of pretty much any type) is written to disk, so that I can undertake some scanning operations to check if files content meets certain company policies.</p>
<p>In short, you can see that I need to process any <em>user</em> files as they are being written to disk.</p>
<p>Here is my problem. I want to use C# for this task, but I am not sure if it has the ability to meet my requirements. Everything I have seen on the net is geared towards lower-level C programming, which I specifically want to avoid due to time constraints for this project. Anyone aware of how to easily do this task in C#? Is it even feasible (ie too high-level a language, too slow a language etc.)?</p>
http://stackoverflow.com/questions/995906/not-enough-storage-is-available-to-process-this-command-in-visualstudio-20087Not enough storage is available to process this command in VisualStudio 2008Bogdan_Ch2009-06-15T12:44:56Z2009-11-09T13:58:49Z
<p>Hello!</p>
<p>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</p>
<p><strong>Metadata file '[name].dll' could not be opened -- 'Not enough storage is available to process this command.</strong></p>
<p>Usually to get rid of that I need to restart Visual Studio</p>
<p>The assembly I need to use in my project is BIG enough (> 70 Mb) and probably this is the reason of that bug, I've never seen some thing like this in my previous projects. Ok, if this is the reason my question is why this happens and what I need to do to stop it.</p>
<p>I have enough of free memory on my drives and 2Gb RAM (only ~1.2 Gb are utilized when exception happens)</p>
<p>I googled for the answers to the questions like this.</p>
<p>Suggestions usually related to:
1) to the number of user handlers that is limited in WinXP...
2) to the physical limit of memory available per process</p>
<p>I don't think either could explain my case</p>
<p>For user handlers and other GUI resources - I don't think this could be a problem. The big 70Mb assembly is actually a GUI-less code that operates with sockets and implements parsers of a proprietary protocols. In my current project I have only 3 GUI forms, with total number of GUI controls < 100.</p>
<p>I suppose my case is closer to the fact that in Windows XP the process address space is limited with 2 GB memory (and, taking into account memory segmentation, it is possible that I don't have a free segment large enough to allocate a memory).
However, it is hard to believe that segmentation could be so big after just 2-3 hours of working with the project in Visual Studio. Task Manager shows that VS consumes about 400-500 Mb (OM + VM). During compilation, VS need to load only meta-data. Well, there are a lot of classes and interfaces in that library, but still I would expect that 1-2 Mb is more then enough to allocate <strong>metadata</strong> that is used by compiler to find all public classes and interfaces (though it is only my suggestion, I don't know what exactly happens inside CLR when it loads assembly metadata).</p>
<p>In addition, I would say that entire assembly size is so big only because it is C++ CLI library that has other um-managed libraries statically linked into one DLL. I estimated (using Reflector) that .NET (managed) code is approx 5-10% of this assembly.</p>
<p>Any ideas how to define the real reason of that bug? Are there any restrictions or recommendations as to .NET assembly size? (<em>Yes I know that it worth thinking of refactoring and splitting a big assembly into several smaller pieces, but it is a 3rd party component, and I can't rebuilt it</em>)</p>
http://stackoverflow.com/questions/1699897/retrieve-list-of-tables-in-ms-access-file0Retrieve List of Tables in MS Access FileYaakov Ellis2009-11-09T09:12:00Z2009-11-09T09:19:43Z
<p>If I can open a connection to an MS Access file in C#, how can I retrieve a list of the different tables that exist in the Access DB (and if possible, any meta-data associated with the tables)?</p>
http://stackoverflow.com/questions/1276978/how-can-i-add-meta-data-to-recorded-flv-files-in-red50How can I add meta-data to recorded flv-files in red5?domi2009-08-14T09:47:07Z2009-11-08T17:32:18Z
<p>Hello!</p>
<p>I wonder how to you can add meta-data to flv-files you recorded by red5...</p>
<p>mine just have something like this:</p>
<pre><code>0.000 | FLV::Event tag
| event : onMetaData
| audiocodecid : -1
| canSeekToEnd : true
| videocodecid : -1
| duration : 0
</code></pre>
http://stackoverflow.com/questions/1688043/associating-related-emails-import-from-exchange-into-ticket-system0Associating related emails (import from Exchange into ticket system)Chris Klepeis2009-11-06T14:45:01Z2009-11-06T14:53:17Z
<p>I'm developing a customer service application. When customers submit requests via email, I import the email messages into my SQL Server tickets table (reading the mail messages in MS Exchange using ColdFusion). </p>
<p>My application allows reps to send reply emails to these "tickets". I'm looking for the best way to track which emails are related to specific tickets.... so if an email comes in with certain info in the header or elsewhere, I know how to handle it in my program (either as a new ticket or a reply to an existing ticket). I was thinking of including a "tracking ID" in our response email so that when they reply to it, I can use regex to determine which ID its from.... trying to see what others are doing in this kind of situation.</p>
<p>I'm using ColdFusion because it was the quickest solution, however, if .Net can do what I want to do then I would go that route.</p>
http://stackoverflow.com/questions/1681044/complex-lookup-metadata-in-document-library0Complex lookup metadata in document libraryRiddler7772009-11-05T14:51:38Z2009-11-05T17:51:25Z
<p>A client wants to have a lookup field for customer name found in a database as metadata on a Word document in a document library. They have a code which represents a group of customers and one of them should be used as customer name as metadata as well as the customer code inside the document.</p>
<p>Since editing the metadata in Word leaves no room for extra logic like external database lookup, right?, we have to tweak the EditForm.aspx with Asp.Net or java script to add the functionality to lookup external data.</p>
<p>The hard part is that we need to make the user fill in the metadata in SharePoint before the document is opened. Otherwise the user must create, close, edit metadata and then re open the document. The default behavior of SharePoint is to open the document first and let the user edit the metadata inside Word.</p>
<p>My first thought was to create a custom action for each content type and redirects the user to a page that creates the document in code and then brings the user to the EditForm page. Alternatively use codebehind for the custom action to create the document and let the user edit metadata in the EditForm. Clicking OK after that would save the metadata and bring up the document itself.</p>
<p>Then I stumbled upon EventRecievers and thought that might solve my problem. To intercept the creation of the document and send the user to the EditForm page first.</p>
<p>What is your thoughts on this, and how would you solve this problem?</p>
http://stackoverflow.com/questions/1660816/videodisplay-metadatareceiced-ready-totaltime0videoDisplay metadatareceiced ready totaltimejon2009-11-02T11:46:03Z2009-11-05T05:40:54Z
<p>I'm building a video player that run's FLVs and cannot overcome the fact that flex foes not fire the <code>metadataReceived</code> event sometimes. Sometimes it does and sometimes it does not.
therefore the total time of the FLV remains -1. </p>
<p>I understand its a known bug , I'm researching about it for a long time now , but could not find a good workaround by now, found one that says to set the buffer time to 0 and try that, but it's also does not work. </p>
<p>Does anyone has a good workaround for this?</p>