Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by shyamal

  1. shyamal

    Page layout skewed and footer does not display

    Yes, all of this was checked - File/Page setup is configured as Landscape. When one saves and closes the doc it becomes Portrait. Also the footers are lost. Margins are set correctly. This is Word 97
  2. shyamal

    Page layout skewed and footer does not display

    Hello all, The word document which was once in landscape view defaults as portrait view regardless of how the doc is saved any ideas on how to correct this? Also, the footers which used to display no longer displays. Thanks in advance.
  3. shyamal

    How to view a stored procedure

    What command can I use in Query Analyzer to view a stored procedure? I would like to read through a sp line by line but cannot remember the command. It is not sp_help procedure name nor is it execute procedure name. Thanks in advance.
  4. shyamal

    AIX training in southern california?

    Hello, Does anyone know where one can get trained in AIX in Southern Califoria? Thanks in advance.
  5. shyamal

    How can one find out version numbers of OS

    Thanks for all the help, these commands are great but for the following command: ls /etc/*-release How does one ensure that the patch upgrades are accounted for? That is if the version is shown as SuSE 7.3 how does one know that this is inclusive of the latest patch?
  6. shyamal

    How can one find out version numbers of OS

    Thanks when I run the uname -a command I recieve the following: Linux vu2 2.4.20-19.7 #1 Tue Jul 15 13:45:48 EDT 2003 i686 unknown I was told that this box had Red Hat 7.3, how do you obtain this from the line above. I see no indication that this is RedHat and that it is7.3 thanks.
  7. shyamal

    How can one find out version numbers of OS

    How can one find out the Linux version and version numbers on an iSeries partition. The types would be SuSe. Thanks in advance.
  8. shyamal

    Hi, How does one execute this SQ

    Thanks SybaseGuru! This worked. The set is used in SQL vs. the select in Sybase.
  9. shyamal

    Hi, How does one execute this SQ

    Hi, How does one execute this SQL stored procedure in Sybase 12.5? declare @i integer set @i = 1 while @i <= 5000 begin insert into T00 (RECID) values (@i) insert into T50 (RECID) values (@i) set @i = @i + 1 end Thanks in advance.
  10. shyamal

    How to write a stored procedure in Oracle

    Thanks! you solved the next problem as well!
  11. shyamal

    Counter does not work in the procedure

    Hi, For this stored procedure, I cannot make the counter work, any ideas? The table becomes populated with five 1's what I want is that the table is populated with 1,2,3,4,5. DECLARE i INTEGER := 1; BEGIN WHILE (i <= 5) LOOP insert into SLEONARD.T00 (RECID) values (1); COMMIT; insert into...
  12. shyamal

    How to write a stored procedure in Oracle

    Hello, How can I run this SQL stored procedure in Oracle? declare @i integer set @i = 1 while @i <= 5000 begin insert into T00 values (@1) insert into T50 values (@1) set @i = @i + 1 end commit Thanks in advance!
  13. shyamal

    nchar with 92 DB

    When I use the Oracle Enterprise manager for 9i with the 92 DB and I attempt an insert to an NCHAR field I receive garbage data. Example Insert N'test' to a field which is NCHAR(10) nullable. the data when applied appears like so: T#E#S#T Any idea why this is happening? Thanks in advance.
  14. shyamal

    Unicode testing

    I was wondering whether any of you have worked with creating an application which was converted to Unicode. If so what type of tests would you recommend prior to the translation\internationalization of the product. Thanks in advance.
  15. shyamal

    diffrence between dlls

    Definition of a dll: An executable program module that performs some function. DLLs are widely used in Windows, but they are not launched directly by the user. When needed, they are called for by a running application and are loaded to provide additional functionality. DLLs can be rather simple...

Part and Inventory Search

Back
Top