Search found 2 matches
- 14 May 2011 13:52
- Forum: DOS Batch Forum
- Topic: trouble with pipe character
- Replies: 2
- Views: 3413
Re: trouble with pipe character
Thanx, it works now. I did not use delayedexpansion, and put only the string itself into quotes, so that gave me trouble with the pipe character. With delayedexpansion, and putting the whole "str=..." inside quotes, it works like a charm: @echo off cls setlocal enabledelayedexpansion set &...
- 14 May 2011 11:17
- Forum: DOS Batch Forum
- Topic: trouble with pipe character
- Replies: 2
- Views: 3413
trouble with pipe character
Hi, I am trying to get this next line (literally) inside a textfile: select 'alter user '||username||' identified by values '''||password||''';' from dba_users; The trouble is with the pipe character, it cuts of there with everything I try. I am not putting my script here (it does not work), so plea...