Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

4s-import(1j) [debian man page]

4S-IMPORT(1J)							      4store							     4S-IMPORT(1J)

NAME
4s-import -- Import RDF into a 4store KB SYNOPSIS
4s-import kbname [-v] [-a] [-M default-model] [-m model] [-f format] [rdf-file] ... -v, --verbose Increase verbosity (by default success is silent) -a, --add Ordinarily importing RDF to a model replaces any previous contents of that model, by using the --add flag this behaviour is overridden and any triples which were previously in the model are retained. -M, --model-default Set a model (graph) URI which is used by default for all imported files -m, --model Set a model (graph) URI for the next named file only (overrides -M if it has been used) -f, --format Tell the RDF parser the format of the files (if not specified the parser will guess) SEE ALSO
4s-query(1), 4s-size(1), 4s-httpd(1), 4s-backend(1), 4s-delete-model(1) EXAMPLES
$ 4s-import demo one.ttl two.xrdf Imports two files into the demo KB, each as a separate model (graph) guessing the RDF format used for each file $ 4s-import demo -M http://example.com/menu starters.ttl mains.ttl sweets.ttl Imports three files into a single graph named <http://example.com/menu> 4store May 31, 2019 4store

Check Out this Related Man Page

4S-QUERY(1J)							      4store							      4S-QUERY(1J)

NAME
4s-query -- Run SPARQL queries on a 4store storage backend SYNOPSIS
4s-query kb-name [-f format] [-O optimisation-level] [-I insert-mode] [-r] [-s soft-limit] [-b base-URI] [-e] [-P] [query] -f Set the format to output results it, options are "sparql", "text", "json", and "testcase" -O, --opt-level Set the optimisation level of the query engine, in the range 0-3. -I, --insert Treat CONSTRUCT statements as INSERT statements. This feature is highly experimental and largly untested. -r, --restricted Enable query complexity restriction mode -s, --soft-limit Override default soft limit on search breadth -d, --default-graph Enable SPARQL default graph support -b, --base Set base URI for queries -e, --explain Return an explanation of the query planner's descisions -P Enable programatic IO mode INTERACTIVE MODE
If [query] is ommited then 4s-query goes into interactive mode, suitable for trying queries from the command line. -P enables programatic interactive mode, suitable for infacing with processes via stdin and stdout. Queries are sent as UTF-8 bytes, termi- nated with "#EOQ" on a line of it's own, results are returned, ending with "#EOR". Interacting with 4store in this way is more efficient than using the SPARQL protocol, but non-standard. SEE ALSO
4s-import(1), 4s-httpd(1), 4s-backend(1), 4s-delete-model(1) STANDARDS
4s-query implements the SPARQL Query Language specification (aka. SPARQL/Query 1.0) and the SPARQL Result Format specification (aka. SPARQL/Results 1.0). Default graph support is no normally enabled, the --default-graph turns it on, as does speicfying FROM <default:> in the query. Data loaded with $ 4s-import kb --add -m default: uri/filename will be added to the default graph. EXAMPLES
$ 4s-query -f sparql demo 'SELECT * WHERE { ?s ?p ?s } LIMIT 10' Return 10 random triples from the knowledgebase "demo" in the SPARQL XML result format. $ 4s-query -P demo < query.rq Run the query in query.rq and output the result to stdout 4store May 31, 2019 4store
Man Page

14 More Discussions You Might Find Interesting

1. IP Networking

The OSI-model

after reading a paper about the OSI-model I'm not exactly sure how to look at this model. Does data (a file) travel from the application level "down" each layer at the client Application V Presentation V Session V Transport V Network V Data link V | | | (Physical) | (3 Replies)
Discussion started by: J.P
3 Replies

2. UNIX for Dummies Questions & Answers

Laptop Compatability

I would like to know if anybody has had success loading Solaris 8 onto a laptop? If so, what was the make and the model:confused: (5 Replies)
Discussion started by: bilal_aa
5 Replies

3. Shell Programming and Scripting

import

i'm importing tables to oracle 7, but sometimes import give me warnings (not failures) how can i rollback the whole imported tables if warnings occured please advise thanx (2 Replies)
Discussion started by: omran
2 Replies

4. UNIX for Dummies Questions & Answers

License with demo???

I'm trying to setup a test environment to test upgrading to Solaris 8 or 9. Though when I go to install the demo version of Sun1 (forte/sun workshop as named before) it'll still ask for a 20 hexidecminal password for just a demo. huh? Ok so I added a 20 character thing in there it passed... (2 Replies)
Discussion started by: merlin
2 Replies

5. Shell Programming and Scripting

Import data from compressed file

HI I need to import data from a file which is in comressed format but system doesn't have enough space to uncompress file Is there any way so that i can do import from compressed file. (4 Replies)
Discussion started by: ap_gore79
4 Replies

6. UNIX for Dummies Questions & Answers

import data files from Unix to Windows?

(3 Replies)
Discussion started by: whatisthis
3 Replies

7. Shell Programming and Scripting

checking users input to file

ok im sorta stuck on this, The user enters a car model and it has to check it in a text file in the current directory. If the car model is not in the file, user has to enter another model This is what i have so far read -p "Enter a car model: " car1 grep -w $car1=$(cat carMakes.txt)... (3 Replies)
Discussion started by: gangsta
3 Replies

8. AIX

can aix 5.x run on a old powerpc model 250

have an old powerpc model 250, currently on aix 4.3.2...64 meg in size of memory.. Can any of the AIX 5L, 5.1, 5.2, or 5.3 run on it at all ?? (3 Replies)
Discussion started by: ppchu99
3 Replies

9. Shell Programming and Scripting

a little help with using AWK to display whats being read in

I am making a script that reads in the model of a car and then searches a file and displays the make model and price of anything matching the input provided. here is what I have so far #!/bin/sh echo Please enter a car model: read model if test $? -eq 0 then grep $model /home/cars awk... (4 Replies)
Discussion started by: subway69
4 Replies

10. UNIX for Dummies Questions & Answers

How to Import dump file with default value for single column?

Hi, I need to import more than 250K of records to another Database(Oracle).But I want particular column value to be changed in the destination table. Is it possible to do this during export or import process with out modifying data from original table.I do not want to run Update manually. ... (6 Replies)
Discussion started by: GOVINDARAJ.M
6 Replies

11. Shell Programming and Scripting

How to simplify this code?

hi guys need your help...how to simplify this script... for i in `cat dmp.txt` do model=$i more $model | grep : | cut -d ":" -f 2- | grep : | grep -v "=" > temp1 more $model | grep / | cut -d ":" -f 2- > temp2 more $model | grep = | cut -d ":" -f 2- > temp3 more... (2 Replies)
Discussion started by: zulabc
2 Replies

12. UNIX for Advanced & Expert Users

Finding the hardware model name remotely

First, forgive me if this is a stupid questions that I should have asked in the non-expert forum. It seems like a hard questions to me. Is there a way to find the hardware model name from the command line on UNIX machines in general? I want to find out what kind of machines are running at a... (5 Replies)
Discussion started by: Pug
5 Replies

13. AIX

Disk model number

Hi Please let me know how to check disk model number. I have already tried prtconf command but there is no such information related to model number. Regards, Scriptor (3 Replies)
Discussion started by: scriptor
3 Replies

14. AIX

Determine power family of p system from the model #.

Folks, Again a very silly question :D Could someone tell me, how to determine the power family(540, 520, 575, 595 etc) just by looking into the model # info from prtconf/lsconf o/p of the lpar? I dont want run a search on any search engine to find out the power family or hit IBM website to... (3 Replies)
Discussion started by: thisissouvik
3 Replies