Questions tagged [imp]

Used for questions relating to the Electric Imp, a programmable Internet of Things eco-system.

The Imp, or Electric Imp is an eco-system of components that enable products to become part of the Internet of Things (IoT). It includes hardware that connects to the cloud via wifi and has a number of input and output pins to sense and control products. Programming is done via web browser on the cloud with two parts being programmed, the Imp hardware and the backend server.

Best to read the web page on the Electric Imp web site.

77 questions
3
votes
1 answer

Oracle dump file table data extraction to file (original exp format)

I have Oracle dump files created with original exp (not expdp) (EXPORT:V10.02.01, Oracle 10g). They contain only table data for four tables. 1) I want to extract the table data into files (flat/fixed-width, CVS, or other text file) without importing…
user3699974
  • 31
  • 1
  • 3
3
votes
2 answers

Running Oracle IMP as SYSDBA

I need to import an ORACLE 9 DMP file into a newly installed Oracle 11g. I'm using the imp utility and using SYSMAN as the login. I get to the point to restore and am told 'only a DBA can import a file exported by another DBA'. When I try and use…
Bob Perkins
  • 31
  • 1
  • 1
  • 2
3
votes
0 answers

Horde and IMP in CentOS

i'm having some problems with IMP and Horde, i'm trying to log into the mail control panel but without success, this is what appears in shell user is not authorized for imp on line 259 of "usr/share/pear/Horde/Registry.php I already google it…
unpix
  • 853
  • 2
  • 15
  • 31
2
votes
1 answer

dynamically import submodules in python

Suppose I provide a module in the command line and want to import it using the "imp" module: $ foo.py mod.a.b.c What is the proper way of doing this? Split the "mod.a.b.c" and add each path? The behaviour of "imp" does not seem to be parallel to…
mathtick
  • 6,487
  • 13
  • 56
  • 101
2
votes
1 answer

Oracle imp and exp commands

Normally when i have to take a backup of of a database on unix, i do, exp DBUSER/DBPSW@INST file=xxx.dmp or load from a dump imp DBUSER/DBPSW@INST file=xxx.dmp my question here is : how can we take a backup of a single table how can we import…
Vijay
  • 65,327
  • 90
  • 227
  • 319
2
votes
0 answers

Is it possible to send print commands to IMP MICR Printer by Inotech using ASCII codes?

I have a MICR printer from InoTech called IMP. The printer is installed as "Generic/Text Only" printer which prints RAW data. It has a MICR character drum which moves and impacts the codes. Now i am unable to find a code on the internet which can…
2
votes
3 answers

How to have oracle imp 11gr2 and 12cr2 on the same machine and just choose the one that I want to use

I'm currently developing an application to import oracle dbs. In order to do that I'm using Data Pump and the original imp client (version 12.2.0.1). However I cannot use that imp client against an 11gr2 database, I need to use the 11gr2 imp…
the_ccalderon
  • 2,006
  • 2
  • 13
  • 24
2
votes
0 answers

Single Byte to Multi Byte Conversion

We are converting a Oracle Single Byte instance into Multi-Byte. Following is the summery of steps we have following: Take an export of Single Byte schema Generate DDL file from exported Dump in step 1(Only table Definitions). Run these table…
Maddy
  • 3,726
  • 9
  • 41
  • 55
2
votes
1 answer

Electric IMP + PubNub: Agent making extra calls

I'm working on a IoT project that uses Electric Imp and PubNub for communication, and Parse for data logging, cloud code, etc. For some reason my code in the IMP IDE is making multiple calls to PubNub channel, when I only want the event broadcasted…
2
votes
2 answers

Objective-C Implementation Pointers

I am currently writing an XML parser that parses a lot of data, with a lot of different nodes (the XML isn't designed by me, and I have no control over the content...) Anyway, it currently takes an unacceptably long time to download and read in…
Dwaine Bailey
  • 410
  • 1
  • 3
  • 10
2
votes
1 answer

Writing a Haskell program for typechecking programs written in an imperative programming language

I am trying to write a program in Haskell to type check programs written in an imperative programming language. Here is the abstract syntax: type Name = String -- a program is a series (list) of variable declarations and a series (list) of…
Justin B
  • 110
  • 1
  • 8
2
votes
1 answer

is the order of tables relevant when importing from oracle dump?

I am trying to import specific tables from an oracle dump, in order to avoid any parent key not found exception, I want to follow a certain order to import the tables. For example if tables X depends on tables A and B, I want to import A and B…
Wael
  • 1,533
  • 4
  • 20
  • 35
2
votes
2 answers

Passing in a custom selector implementation

Supposed I have two objective-c classes, LBFoo and LBBar. In LBFoo I have a method that looks like this: - (void)doSomethingWithFoo:(NSNumber*)anArgument { if(anArgument.intValue > 2) [LBBar doSomethingWithLBBar]; else [LBBar…
Andrew Lauer Barinov
  • 5,694
  • 10
  • 59
  • 83
2
votes
3 answers

Python import internals difference

I imported a numpy library in two different ways. The first time with from numpy.random import mtrand and the second time after messing with the sys.path. However, the output of these two module imports was totally different: >>> from numpy.random…
Dave Halter
  • 15,556
  • 13
  • 76
  • 103
1
vote
1 answer

Attempting to use SQL-Developer to analyze a system table dump created with 'exp'

I'm attempting to recover the data from a specific table that exists in a system table dump I performed earlier. I would like to append the rows existing in the dump to any rows that may exist in the active table. The problem is, it's likely that…
Robert McGinley
  • 67
  • 1
  • 10