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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: shyamal
  • Content: Threads
  • Order by date
  1. 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.
  2. 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.
  3. shyamal

    AIX training in southern california?

    Hello, Does anyone know where one can get trained in AIX in Southern Califoria? Thanks in advance.
  4. 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.
  5. 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.
  6. 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...
  7. 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!
  8. 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.
  9. 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.
  10. shyamal

    Need DB/2 UDB 7.2 Fix Pack client download

    Does anyone know where exactly one can find this. I am not looking for possible sites rather definite sites. Thanks in advance.
  11. shyamal

    How does one rename a table

    The rename command: rename table a to table b is incorrect if you are logged on as the administrator. I want to rename a table in the schema. That is: SL.table1 sl is the schema name.
  12. shyamal

    Limiting field selection on the AS/400

    I am using an emulator to access DB/2 files. I also use the SQL utility. I cannot use the standard SQL statement to return selected fields from a file. Example select fldchar1,fldchar2 from library/filename instead I have to use: select * from library/filename. How would one filter a select...
  13. shyamal

    Data Generator - Tool

    Does anyone know of any freeware for data generation. Basically a tool which could insert random data for SQL2K,Oracle,DB/2 databases? Thanks in advance. Shyamal
  14. shyamal

    Inserting timestamps in SQL

    I am having problems inserting into a timestamp field Field: fldtimestamp (timestamp,null) insert into cnv_tmstmp (fldtimestamp) values ('10/01/01:15:10:111') or if i just put 10/01/01 I receive the following: Disallowed implicit conversion from data type varchar to data type timestamp...
  15. shyamal

    Insert data from two tables to another one - join problem

    I am attempting to insert into a destination table from two source tables in the same database with certain criteria. Table Names Table fields SRC: Table1 - (fldintkey,fldint1,fldchar) - all null SRC: Table2 - (fldintkey,fldint1,fldchar) - all null Dst: Table_Dst -(fldintkey,fldint1,fldchar)...
  16. shyamal

    Maximum table joins

    Anyone know what the maximum table joined can be in Oracle 8i\9i? Thanks in advance.
  17. shyamal

    Maximum table joins

    Anyone know what the maximum table joined can be on SQL2K? Thanks in advance.
  18. shyamal

    nchar inserts in Oracle 8i

    A typical insert for an nchar field does not work: insert into DEV.SLEONTPS (FLDNCHAR) VALUES (&quot;test&quot;) I was told to use this: insert into DEV.SLEONTPS (FLDNCHAR) VALUES TRANSLATE(&quot;test&quot; USING NCHAR_CS); This still errors out with the following; ORA-00906: missing left...
  19. shyamal

    Time and Timestamp

    As oracle 8i only has a date datatype for conversions such as SQL how does one input time and timestamp into oracle? Thanks in advance.
  20. shyamal

    Date in Oracle 8i

    The following insert generates this error: INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01/01/2001'); Error: INSERT INTO DEV.SLEONTPS (NVARCHAR,FLDDATE1) VALUES ('THIS','01-01-2001') * ERROR at line 1: ORA-01843: not a...

Part and Inventory Search

Back
Top