Questions tagged [parameters]

In computer programming, a parameter is a type of variable that refers to a piece of data used as input in a query to a database or other data-storage table.

In computer programming, a parameter is a variable. A variable is a name given to a data storage location. The parameter variable refers to a piece of input data that is being used in a query. Input data, or parameters, are often called arguments. These arguments are used to define what data should be returned from a query (information retrieval) to a data warehouse. A data warehouse can be as local as a database to as large as the internet.

Ultimately, parameters tell the information retrieval function what data to return to the user.

104 questions
13
votes
2 answers

What parameters does ulimit have?

I see in examples that the -u option is used with the ulimit command, but I cannot find documentation that says what that option means. man ulimit shows the manual for a system library function. What options does ulimit have and what do they mean?
Mnementh
  • 936
  • 4
  • 15
  • 32
11
votes
1 answer

How do I add command line arguments (parameters) for pinned applications on Windows 10?

On Windows 10 I'd like to add command line arguments (parameters) for "pinned" applications in my "Start" area. But when I right click a pinned app, I don't see something like "Preferences". Is there a way to modify the properties?
10
votes
3 answers

How to convert HTML into endless one-page PDF via wkhtmltopdf?

Currently when converting the PDF from given URL, like: wkhtmltopdf http://superuser.com/ superuser.pdf where it consist multiple A4 pages (so sometimes images are cut in the middle of the page). My question is: How do I convert HTML page into PDF…
kenorb
  • 24,736
  • 27
  • 129
  • 199
7
votes
1 answer

How to open the SnippingTool (Win Tool) passing a parameter to start automatically?

I'm trying to open the Windows tool called SnippingTool and look for an option to start a new snip automatically. Something like this: cmd c:\Windows\System32\SnippingTool.exe /new Some ideas?
user6167
  • 71
  • 1
  • 2
  • 3
6
votes
1 answer

Query parameters in an external connection to sql server

I want to do exactly this: http://dailydoseofexcel.com/archives/2004/12/13/parameters-in-excel-external-data-queries/ but I want to do it in Excel 2010 and also I am querying SQL Server instead of MS Access. Is it possible? To elaborate on what I…
Dan
  • 252
  • 1
  • 4
  • 13
4
votes
1 answer

How to remove .bat extension from file name in a parameter?

I made a bat file and during execution, it displays a title in the command window. The title includes the bat filename, and it is displayed in full, including the .bat extension. The code I'm using to do this is shown below (see the Title…
Ferit Uzun
  • 59
  • 1
  • 4
4
votes
1 answer

Powershell Start-Process Parameter Problems

Probably a total noob question but: When I run Start-Process ".\packages\PS-Get.0.1.0.0\NuGet.exe" update -RedirectStandardOutput ".\packages\PS-Get.0.1.0.0\NuGet.exe.Update.log" -RedirectStandardError …
JimmyP
  • 165
  • 1
  • 5
4
votes
2 answers

concatenate cmd line starting from some parameter

If I get a cmd line like: myscript param1 param2 param3 param4 param5 param6 ... (so on) How can I save a string consisting of parameters starting from some specific one? The $@ gives me the whole command line concatenated. What I need is to get a…
azerIO
  • 385
  • 1
  • 4
  • 14
4
votes
1 answer

How to create ECDSA keypair based on OpenSSL config file?

When generating CSRs based on RSA key-pairs I'm using the OpenSSL req command for convenience: openssl req -new -noenc -config 'server.cert.conf' -keyout 'private/server.key.pem' -out 'server.csr.pem' I like to put the details into a config file,…
4
votes
1 answer

Shell scripting: Way to parse parameters from command line

myscript [-a a-arg] [-c c-arg] [-b] [-e] somedirectory Given that I want my shell script be invoked at the command line using the above parameters - where [these brackets] denote that they are optional - what is the best method to parse them?
bguiz
  • 2,041
  • 5
  • 22
  • 33
3
votes
1 answer

how to shift all parameters in a batch

The well-know shift command can be used to shift positional parameters in batch file, BUT it does not affect the special variable %*. The shift command has no effect on the %* batch parameter. Is there an alternative for shifting %°?
eadmaster
  • 1,177
  • 1
  • 14
  • 31
3
votes
0 answers

How to represent m:n relationships in a form in Libre Office base?

I have an embedded database in Libre Office. I am building a form in it, and got into a problem. I have a table called "Author" and another table called "Publication", connected by a third table "AuthorsAndPublications" (it is an m:n relationship).…
rumtscho
  • 3,944
  • 10
  • 47
  • 67
3
votes
1 answer

How to find out what parameters/arguments a program is passing when it calls other programs?

I am using a program called get_iplayer, and during it's run, it calls other programs such as RMTPdump, flvstreamer and ffmpeg. What I would like to find out is what information it is passing to these program. I can see on terminal that they have…
Geesh_SO
  • 445
  • 1
  • 5
  • 17
3
votes
4 answers

does 'noatime' make sense for a read-only filesystem?

mount -o remount,ro,noatime As the title says - if the filesystem is actually read-only, does noatime have any affect?
gng
  • 31
  • 1
  • 2
3
votes
1 answer

Change window size via shortcut parameters

How can I change the starting size and location (on screen) of a program using only the shortcut dialog box, so that when I want to open a program at a certain size, on a certain screen?
wizlog
  • 13,277
  • 24
  • 77
  • 116
1
2 3 4 5 6 7