[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
RE: [sqr-users] Can anybody help - - - - Foreign SPY Detected!!!
I agree. One of the things I admire most about this group is that it states
just the facts, no nonsense! Up until now, I felt very lucky to be part of
this group and receive all of the informational emails. Now I am
considering unsubscribing.
Patti
-----Original Message-----
From: Varsha Das [mailto:vdas@mail.ucf.edu]
Sent: Monday, October 27, 2003 7:39 AM
To: sqr-users@sqrug.org
Subject: Re: [sqr-users] Can anybody help - - - - Foreign SPY
Detected!!!
Enough already!
Does this list have a owner? Why is everyones time being wasted with
non-sqr related mail?
Varsha.
>>> thorburn@conl.net 10/25/2003 2:03:28 PM >>>
Take your parasite A** back to Chutia land!
It figures that you would be using a hotmail email address
like the other Indian Spies.
You CAN be found.
----------------------------------------------------------------------------
-----------------
----- Original Message -----
From: "Ashish Bhatt" <ashish_bhatt@hotmail.com>
To: <sqr-users@sqrug.org>
Sent: Friday, October 24, 2003 3:35 PM
Subject: Re: [sqr-users] Can anybody help - - - - Foreign SPY
Detected!!!
> Are you President Bush's National Security Advisor?
> ----- Original Message -----
> From: "David Thorburn" <thorburn@conl.net>
> To: <sqr-users@sqrug.org>
> Sent: Friday, October 24, 2003 1:50 PM
> Subject: Re: [sqr-users] Can anybody help - - - - Foreign SPY
Detected!!!
>
>
> > This is a national security issue.
> >
> > Regards,
> >
> > D.
> >
>
>
--------------------------------------------------------------------------
> --
> > -----------------
> > ----- Original Message -----
> > From: "Jim McKeever" <JMcKeever@fastaff.com>
> > To: <sqr-users@sqrug.org>
> > Sent: Friday, October 24, 2003 10:35 AM
> > Subject: RE: [sqr-users] Can anybody help - - - - Foreign SPY
Detected!!!
> >
> >
> > > PLEASE!!!!! don't start on this again...
> > >
> > > -----Original Message-----
> > > From: David Thorburn [mailto:thorburn@conl.net]
> > > Sent: Friday, October 24, 2003 11:23 AM
> > > To: sqr-users@sqrug.org
> > > Subject: Re: [sqr-users] Can anybody help - - - - Foreign SPY
> > > Detected!!!
> > >
> > >
> > > ** Foreign SPY Alert!!! **
> > >
> > > Foreign Parasite,
> > >
> > > I bet you told your employer that you were an SQR
> > > expert like the rest of your Chutia parasites lie on their
> > > resumes!
> > >
> > > Now you're stuck, huh?
> > >
> > > Why are you using an anon email address?
> > >
> > > Are you afraid of your emplor finding out that you
> > > are trying to get others to do your work for you
> > >
> > > Do your own work!
> > >
> > > Quit stealing American jobs!
> > >
> > > No knowledge transfer to ANON email addresses!
> > >
> >
>
>
--------------------------------------------------------------------------
> > --
> > > -----------------
> > >
> > > ----- Original Message -----
> > > From: "premnath sunkara" <spn1981@yahoo.com>
> > > To: <sqr-users@sqrug.org>
> > > Sent: Friday, October 24, 2003 10:00 AM
> > > Subject: [sqr-users] Can anybody help
> > >
> > >
> > > > I am new to SQR and am working on it from 1
> > > > week. I am trying to run the following program. This
> > > > program reads from a flat file and inserts the data in
> > > > the flat file into a record. It is giving me the
> > > > following error
> > > > <SQR 5703> Error opening the SQR log file: 'sqr.log'
> > > > <13>: Permission denied
> > > > This is happening only for this program. All my other
> > > > programs are fine. The input file is in the following
> > > > format
> > > >
> > > > 34, 34, 34, 34
> > > > 34, 34, 34, 34
> > > > 34, 34, 34, 34
> > > >
> > > > The record in the database is also fine. I mean it has
> > > > all the fields i gave in the program in the same
> > > > order.
> > > > The program is given below:
> > > >
> > > >
> > > > !testing program
> > > > !using flat files to populate database
> > > >
> > > > begin-program
> > > >
> > > > open 'C:\Documents and
> > > > Settings\psunkara\Desktop\test.txt' as 1 for-reading
> > > > record 3000
> > > > !status=#filestat
> > > > ! if #filestat !0
> > > > ! show 'error opening input file'
> > > > ! else
> > > > do read_input_file
> > > > ! end-if
> > > >
> > > > end-program
> > > >
> > > > begin-procedure read_input_file
> > > >
> > > > display 'inseritng records from file C:\Documents and
> > > > Settings\psunkara\Desktop\test.txt into
> > > > UHS_PORTINVCODE'
> > > > move 0 to #inserts
> > > > move 0 to #tot-recs
> > > >
> > > > while not #end-file
> > > > read 1 into $input:1000
> > > > if #end-file
> > > > break
> > > > end-if
> > > > unstring $input by $sepchar into -
> > > > $UHS_NDIP -
> > > > $UHS_NDNAME -
> > > > $UHS_PORT -
> > > > $UHS_DELTATRAFFIC
> > > >
> > > > do insert_temp_job
> > > > end-while
> > > >
> > > > close 1
> > > > ! display 'total records inserted: ' noline
> > > > ! display #tot_recs 999,999,999
> > > >
> > > > end-procedure
> > > >
> > > > begin-procedure insert_temp_job
> > > >
> > > > begin-sql on-error=insert_error
> > > >
> > > > insert into PS_UHS_PORTINVCODE
> > > > (
> > > > UHS_NDIP,
> > > > UHS_NDNAME,
> > > > UHS_PORT,
> > > > UHS_DELTATRAFFIC
> > > > )
> > > >
> > > > values
> > > > (
> > > > $UHS_NDIP,
> > > > $UHS_NDNAME,
> > > > $UHS_PORT,
> > > > $UHS_DELTATRAFFIC
> > > > )
> > > >
> > > > end-sql
> > > > ! if #sql-count=1
> > > > ! add 1 to #inserts
> > > > ! if #inserts >= 500
> > > > ! commit
> > > > ! move 0 to #inserts
> > > > ! end-if
> > > > ! add 1 to #tot_recs
> > > > ! end-if
> > > >
> > > > end-procedure
> > > >
> > > > begin-procedure insert_error
> > > >
> > > > if #sql-status=-9 !if duplicate(this code is for
> > > > oracle only)
> > > > show 'insert error:duplicate roe is not allowed for
> > > > NDIP' $UHS_NDIP
> > > > else
> > > > show 'insert error: ' $sql-error
> > > > show 'error number: ' #sql-status
> > > > stop !halt program and rollback
> > > > end-if
> > > >
> > > > end-procedure
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > __________________________________
> > > > Do you Yahoo!?
> > > > The New Yahoo! Shopping - with improved product search
> > > > http://shopping.yahoo.com
> > > >
> > > > _______________________________________________
> > > > sqr-users mailing list
> > > > sqr-users@sqrug.org
> > > > http://www.sqrug.org/mailman/listinfo/sqr-users
> > > >
> > >
> > > _______________________________________________
> > > sqr-users mailing list
> > > sqr-users@sqrug.org
> > > http://www.sqrug.org/mailman/listinfo/sqr-users
> > >
> > > _______________________________________________
> > > sqr-users mailing list
> > > sqr-users@sqrug.org
> > > http://www.sqrug.org/mailman/listinfo/sqr-users
> > >
> >
> > _______________________________________________
> > sqr-users mailing list
> > sqr-users@sqrug.org
> > http://www.sqrug.org/mailman/listinfo/sqr-users
> >
>
> _______________________________________________
> sqr-users mailing list
> sqr-users@sqrug.org
> http://www.sqrug.org/mailman/listinfo/sqr-users
>
_______________________________________________
sqr-users mailing list
sqr-users@sqrug.org
http://www.sqrug.org/mailman/listinfo/sqr-users
_______________________________________________
sqr-users mailing list
sqr-users@sqrug.org
http://www.sqrug.org/mailman/listinfo/sqr-users
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
_______________________________________________
sqr-users mailing list
sqr-users@sqrug.org
http://www.sqrug.org/mailman/listinfo/sqr-users