Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
353 views

submit SAS code or macro from Toolbar

Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?
4
votes
1answer
372 views

SAS DM 'close table'

to open a table in SAS we can use the DM "VT {tablename}" command. What is the equivalent command to CLOSE the viewtable window???
4
votes
7answers
2k views

SAS Display Manager commands

The SAS display manager is a comamnd line interface to the SAS system, which remains in Base SAS as a legacy facility. However the online documentation on how to use this facility is sparse at best, ...
3
votes
4answers
1k views

How to integrate a SpringSource dm Server into another OSGi-based application server?

I would really like to use SpringSource dm Server, but our customer requires us to run our apps on their application server (Websphere). Is there a way to integrate SpringSource dm Server with other ...
2
votes
1answer
216 views

SAS Command Line shortcut

Is there a shortcut in Base SAS to provide focus to the command-line / display manager bar?
1
vote
1answer
21 views

Where can I find documentation on the raw dm_mirror interface?

I'd like to use dm_mirror directly, rather than through LVM or MD, but I've had trouble finding clear documentation on the table format it expects. Is such a document available somewhere? Note that I ...
1
vote
1answer
138 views

Alfresco - Best practices for custom document lifecycle (Java?)

After talking with some people at the DevCon in London and after looking at Records Management source code I noticed that there's actually no good example of how to implement custom documents ...
1
vote
1answer
104 views

Bubble Sorting Program, Works in DM compiler(on windows) & not on GCC(Ubuntu)

I made this bubble sort algorithm in C. Its working well in DM, but when executed in gcc, gives me incorrect output. #include <stdio.h> int i,j; void BubbleSort(int*a, int n) //to sort the ...
0
votes
0answers
60 views

kpartx: read error when removing mapping

I have a backup procedure that uses kpartx to read from a partitioned lvm volume. Seldomly it happens that the device cannot be unmapped. Right now when I try to remove the mapping I get the ...
0
votes
0answers
38 views

Easiest method to receive a DM / @mention with number of followers in body?

Is it possible to have a DM / @mention sent daily to your own account, with the total followers that you have at that time? So, if @user has 400 followers at 00:00 today, send DM to @user on ...
0
votes
1answer
252 views

Spring DM problem with Services

I'm learning Spring DM and I have a problem with Service registry. I'm using ServiceMix 4.3.0 with embedded Felix instance. I have 2 bundles in my project. The first one contains interface, and mock ...
0
votes
0answers
229 views

Open source OMA DM Server besides Funambol

Are you aware of any open source implementations of an OMA DM Server besides Funambol or alternatively a library which implements OMA DM ?
0
votes
1answer
315 views

Using Datamapper for Heroku without installing Postgres locally

I want to use datamapper in a rails app i want to deploy on heroku. Therefore i need to add dm-postgres-adapter to my Gemfile. Is there any way to have heroku installing this gem without installing ...
0
votes
1answer
133 views

How do you make SAS toolbar available to ALL windows?

I am using SAS 9.1 and wish to make my toolbar available regardless of which window is in 'focus' (eg log, editor, output). My code looks like this: libname temp678 "\\MyDrive\Team Autoexec"; dm ...
0
votes
1answer
224 views

Using Toolbar to submit SAS code from Editor

When submitting SAS code via the SAS Toolbar (eg cmjohns response) the compiler knows that the code is being "DM'd" and will not run certain code (eg %window). Is there a way to trick SAS into ...
-1
votes
1answer
18 views

DataMapper to migrate data from one table to another.

If I am using DataMapper, and I have two databases, is there any way using migration.rb to copy a table for example table person from database 1 to database 2? (same schema and table values). ...