|
When loading tables from SAS to Teradata, SAS loads the data (usually using the FASTLOAD facility) and then continues down the script. However, I often get critical errors because SAS says the data is loaded, but Teradata is still assembling the data ...
Started by AFHood on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Could you sleep, try to query, catch any error and loop until ready?
Refining Jon's answer, you is ready, like this:
data _null_; dsid=0; do i=1 to 3600 while(dsid<=0); ts=SLEEP(1,1); dsid=OPEN.
|
|
In Windows, I made a small script to compile and then run a Java application:
javac helloWorld.java java helloWorld
helloWorld prints "Hello, world!" and then the command prompt closes immediately. What I want to happen is for the program to execute then...
Started by Austin Kelley Way on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Append the line:
cmd....
You can accomplish this by creating a desktop shortcut with the given line .
You could start the script like this:
cmd /K script.cmd
This will keep the cmd shell open .
You need to start an instance of cmd.exe and just let it run .
|
|
Pasted a piece of code from the shell script transfer.sh
if [[ ${ld} -eq ${eld} ]] ; then mv "$file1" "$FILESNEW/." if [ $? -ne 0 ]; then echo "Move Command Failed-File ${fspec}" fi echo "File ${fspec} Sucessfully Moved to ready directory " else echo ...
Answer Snippets (Read the full thread at stackoverflow):
-f, --force
do not prompt before overwriting
try....
Option -f overrides any prompts ("force").
Use mv -f.
Change mv to mv -f
Man page for mv
But remember, -f to force it means it won't prompt you so you better be sure you know how it's going to be used .
|
Ask your Facebook Friends
|
Is there any console command "del" to delete files from a folder and put them into Recycle Bin? del command will delete files and not in Recycle Bin.
Started by David.Chu.ca on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Cmdutils has a recycle command http://www.maddogsw.com/cmdutils
Delete XP
Delete XP is for deleting files from Command Prompt in Windows (Windows 9x and Windows NT....
When-using-windows-command-prompt.html
Note: I have not tried it.
|
|
Sometimes, it's very tediously to make own configuration, find all libraries, check it ... So, is there any ready typical (template) config for appropriative task?
Started by ziftech on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It has a command shell environment that allows you.
It's on RC2 for their 1.0 release now.
There is no ready made runtime config for your application but you can use things like Maven or Ivy for this.
|
|
I'm developing JS that is used in a web framework, and is frequently mixed in with other developers' (often error-prone) jQuery code. Unfortunately errors in their jQuery(document).ready blocks prevent mine from executing. Take the following simple sample...
Started by 3hough on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
});
I haven't tried this code;script type="text/javascript"> jQuery(document).ready(function() { nosuchobject.fakemethod"> jQuery(document).ready(function....
}); is functionally the same as $(document).ready(function(){ ...
(){ ...
|
|
What does the POP3 CAPA UIDL command do?
Started by Kevin Driedger on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The UIDL command returns command is supported....
The response should be "+OK" or "-ERR" depending on wether the server supports the UIDL command.
It checks if the pop3 server understands (has the CAPAbility) the UIDL command.
|
|
Is it possible to get a button's command argument in javascript. I don't want to manipulate it, i just want to read it.
If possible - how?
Started by Eric on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The short answer is NO if you.
You can put command argument into some hidden field, then retrieve the value of the hidden field in javascript after page loads such as $(document).ready() in JQuery.
|
|
I want to recomment Git to my boss as a new source control system, since we're stuck in the 90s with VSS (ouch), but are the tools and 3rd party support good enough yet?
Specifically I'm talking about GUI front-ends similar to TortoiseSVN, decent visual...
Started by Mike Weller on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
But if some people arn't comfortable on the command line, there could for Windows is awful and....
To answer your question "Is Git ready?" => (and often more than wonderful).
Great, once you get the hang of the command line prompts.
|
|
Hey all, I wrote a PoSH script that searches an FTP site and downloads specific zip files. In the process, I use AVG-free to run a scan on the zip files, before and after they are decompressed.
Now I am ready to put this sucker into production, on an ...
Started by Kai on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
Personally, I prefer McAfee - they have a command line scanning utility - but you.
If you perfectly here.
Not free, though...
NOD32 is an excellent scanner and has command-line options .
|