About 37,500,000 results
Open links in new tab
  1. What's the difference between an argument and a parameter?

    Oct 1, 2008 · But a parameter accepts an argument, so it is an argument that is accepted, not a parameter. And if anything, an argument is given in a call to a parameter (or at least, some function …

  2. How to pass a variable into a YAML template parameter and use it in a ...

    Feb 15, 2025 · If you are passing a variable into a template parameter with the intention of using it as part of another runtime expression, the easiest method is to copy the parameter to a variable.

  3. Switch Parameter in Powershell - Stack Overflow

    Jun 20, 2021 · To assign a value to a switch parameter when calling a function or script you use a slightly different syntax to regular parameters - if you want it to be false you can just omit it, and if …

  4. sql - Passing multiple values for a single parameter in Reporting ...

    I have several Multi-Select parameters in my report. I am trying to find a way to pass in multiple values for a single parameter in the web query string? If I pass in a single value, it works fine....

  5. Using the GET parameter of a URL in JavaScript - Stack Overflow

    Using the GET parameter of a URL in JavaScript [duplicate] Asked 16 years, 7 months ago Modified 4 years, 4 months ago Viewed 226k times

  6. Execute stored procedure with an Output parameter?

    Oct 19, 2009 · exec my_stored_procedure 'param1Value', 'param2Value' The final parameter is an output parameter. However, I do not know how to test a stored procedure with output parameters. …

  7. How do I fix this positional parameter error (PowerShell)?

    Jan 25, 2022 · A parameter is text that is added to a command to change how the command works. The word "parameter" generally refers to both the parameter name and parameter value.

  8. Optional parameters in SQL Server stored procedure

    Jan 8, 2023 · The default mentioned in previous answers only works for simple cases. In more complicated cases, I use an IF clause near the beginning of the stored procedure to provide a value, …

  9. SSIS SQL Task - "Parameter name is unrecognized"

    Jan 6, 2010 · On the Parameter Mapping page I gave set Parameter 0 and Parameter 1 to variables that I know contain the right values. I have also set the Parameter Name values correctly. In the …

  10. Which is better, return value or out parameter? - Stack Overflow

    0 return value is the normal value which is returned by your method. Where as out parameter, well out and ref are 2 key words of C# they allow to pass variables as reference. The big difference between …