Questions tagged [reserved]

Denotes a resource that is usable only in a pre-determined way. This can reference memory, key words or hardware.

Denotes a resource that is usable only in a pre-determined way. This can reference memory, key words or hardware.

94 questions
2
votes
2 answers

Oracle and SQL Server reserved keywords

I need a list of Oracle Database 10g and SQL Server 2008 reserved key words. My application performs DDL statements, thus I need to validate the entered table-, column names, etc. against the reserved words. I know that I can copy and paste the…
My-Name-Is
  • 4,814
  • 10
  • 44
  • 84
1
vote
1 answer

Reserved character codes in Unicode

Why Unicode has several reserved character codes? See the Unicode for two languages- Kannada and Tamil. Both language are very old and I think there is no chance to get new characters to these languages. EDIT: Then why are they wasting some…
Mohammed H
  • 6,880
  • 16
  • 81
  • 127
1
vote
3 answers

How to reserve a vector of strings, if string size is variable?

I want to add many strings to a vector, and from what I've found, calling reserve() before this is more efficient. For a vector of ints, this makes sense because int is 4 bytes, so calling reserve(10) clearly reserves 40 bytes. I know the number of…
BanjoMan
  • 93
  • 5
1
vote
2 answers

file_exists with reserved filenames bug

Ok here's my code $ref = $_GET['ref']; if (file_exists('views/'.$ref.'.php')) { $this->prepare($ref); } elseif (!file_exists('views/'.$ref.'.php')) { echo 'Page you are requesting doesn´t exist'; …
teorius
  • 35
  • 4
1
vote
0 answers

Is 'multiple' an unlisted JavaScript reserved word?

I wrote a very simple JavaScript function to take a numeric input and show it on screen as the innerHTML of a paragraph element. The function was named 'multiple' (see code below). It did not work. However, changing the name of the function to…
AndyG
  • 9
  • 4
1
vote
2 answers

Access VBA reserved word "name"

I am using Access VBA to access movie information using the API. It is working fine but I have a problem with attributes that have as name the word "name" which is a reserved word. Let's say I want to access the production companies. I am using this…
1
vote
1 answer

RDS instance recovery for reserved instance

I am investigating disaster recovery for an RDS database. If I want to use a snapshot or point-in-time recovery for my DB instance, naturally a new instance is created. My instance is a reserved instance, would the resulting instance also be a…
Zeretil
  • 287
  • 2
  • 19
1
vote
1 answer

Handling reserved keywords depends on the lexical definition

My question is about handling reserved keywords in Rascal syntax definitions. Take the following Rascal module, which has been derived from the on-line documentation: module Test // Taken from…
1
vote
1 answer

Azure the reserved IP does not exist

I have created a Reserved IP address using the following powershell cmdlet: New-AzureReservedIP “dmz-live” –Label “be-dmz-ip” –Location “North Europe” I had a previously created virtual machine called "be-dmz" and a cloud service "be-dmz" which I…
1
vote
1 answer

'Else' is a reserved keyword Error in Robot Framework script

I am getting error 'Else' is a reserved keyword the code snipet goes as follows , can anyone guide me the resolution ? :FOR ${key} IN @{keys} \ ${item}= Get From Dictionary ${services} ${key} \ Run Keyword If '${item}'…
giri
  • 21
  • 1
  • 7
1
vote
0 answers

azure reserved IP for VM is diffrent than the given

any help appreciated: I'm a bit confused with the fact that when I add a reserved IP to a cloud service, the IP address matches the one reserved. When I do the same but add an instance IP address to a certain machine, it only adds a random public IP…
1
vote
2 answers

What are the risks of using the same keyword of MySQL as table column?

I already deplay a project so far with the same column field and keyword of MySQL using PHP. I just got the message warning as below when I use PhpMyAdmin to manage the database again today. The column name 'order' is a MySQL reserved keyword. My…
Kannika
  • 2,538
  • 2
  • 27
  • 38
1
vote
1 answer

How do i make an HTTPS version of my ReportServer?

i have installed an SSL certificate on the relevant server i approached the Reporting Services Configuration Manager-> Web Service URL in order to assign it a port 443 in addition to the port 80 i chose the SSL certificate under port 443 i clicked…
user3649137
  • 33
  • 1
  • 1
  • 5
1
vote
0 answers

How to delete "System Reserved Partition" for win7 through programming?

I deleted the partition manually. diskpart---> set active partition to c:; bcdboot c:\windows /s c: on boot(by start from dvdrom or Udisk), diskpart----> delete partition override But in my experiences, the 3rd step must be executed on boot. If…
1
vote
4 answers

Regex not working having reserved character in search text c#

I have a regular expression which was working for all my requirement until now, suddenly I got a string which has reserved character like + in c++ and # in C#. Below code work for all my word collection except for c++ and C# MatchCollection…