I need to blow these nags out:
- The 140 characters limitation is cramping my style!
- No line breaks.
- Invite from other networks function keeps crashing and burning.
Anger level is restricted by I/O bandwidth
>netsh interface show interface
Admin State State Type Interface Name
-------------------------------------------------------------------------
Enabled Dedicated {38E7FAC8-FC0C-46CE-BA06-59C5323F1CEF}
Enabled Dedicated {59F5094B-3EC3-4F9B-892A-DF5F773292D9}
Enabled Dedicated {92C5A1C0-8075-486C-B8A8-AAF8914F7E96}
Enabled Dedicated {A9BC217F-9B17-44C9-843D-7C1B8471EAC3}
Enabled Internal Internal
Enabled Loopback LoopbackI am unable to get this to work when I try to specify the interface name. "Local Area Connection" is considered invalid, and gets me no where. When I dump the netsh info, it lists all my interfaces as some gibberish like "{ADB7473C-C67B-49DE-B0D9-A25E990A39F5}", but even using that, and otherwise following the examples, the interface is called invalid.
i have enabled remote registry service then it's working [...]
>net start remoteregistry
The Remote Registry service was stopped successfully.
>netsh interface show interface
Admin State State Type Interface Name
-------------------------------------------------------------------------
Enabled Dedicated Local Area Connection
Enabled Dedicated VMware Virtual Ethernet Adapter (basic host-only support for VMnet1)
Enabled Dedicated VMware Virtual Ethernet Adapter (Network Address Translation (NAT) for VMnet8)
Enabled Dedicated Local Area Connection 2
Enabled Internal Internal
Enabled Loopback Loopback<party>
<name>Acme</name>
<address>Address1</address>
<address>Address2</address>
</party>
| Party table | |
|---|---|
| PartyID | Name |
| 1 | Acme |
| Address table | ||
|---|---|---|
| AddressID | PartyID | Address |
| 1 | 1 | Address1 |
| 2 | 1 | Address2 |
| Party table | |||
|---|---|---|---|
| PartyID | Name | Addr1 | Addr2 |
| 1 | Acme | Address1 | Address2 |
[...] one should be careful when using the Order By clause along with Rownum. When Order By is used with Rownum to restrict query results, it works only if Ordered By is the primary key of the table.Since I am not a great fan of PL/SQL (clunky POS), I decided to use Perl instead to slice and dice the matching criteria.
SELECT
INDEXED_CRITERIA
FROM logTable
WHERE
filter criteria
ORDER BY
INDEXED_CRITERIA
push each INDEXED_CRITERIA into array tempA
pop the last X records from array tempA into array tempB.
produce CRITERIA_TEXT by joining tempB with ',' as separator
SELECT
REQUIRED_FIELDS
FROM logTable
WHERE
CRITERIA_TEXT are met
ORDER BY
INDEXED_CRITERIA