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 SkipVought 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: *

  1. mheilbut

    Function not recognized in .NET project + Metada problem.

    Hi everyone! I have created a .cs component and in this component I have a function called GetCard(). I have a aspx page which I am trying to call this function. When I write component., it brings me all the functions in there but not this new one. When I go to the definition of my function it...
  2. mheilbut

    Problems using VSS and Studio for team development

    I created a project in Visual Studio 2005. I then created a database in Visual Source Safe 2005. I created 3 users for my team to access my project as well. All of this was created in a common netword folder so all could have access. When I am using my project, I can check-out and check-in...
  3. mheilbut

    BLOB

    Hi everyone! I am using a table named SW_ATTACHMENT which contains a BLOB in one of the columns. I have to read this attachment and see if it is a .doc format and if so return 1, else 0. Anyone know how I can do this? Can I use dbms.instr? I am using Peoplesoft Vantive and Oracle. Thanx in...
  4. mheilbut

    Help! Oracle Error Exception Treatment.

    When the server I am trying to connect is down I receive the following error: ORA-29260: network error: TNS:no listener ORA-06512: at "SYS.UTL_TCP", line 410 ORA-06512: at "SYS.UTL_TCP", line 252 ORA-06512: at "SAR.INTSAR", line 50 I am using SQL Navigator for Oracle 4.2. How can I use this in...
  5. mheilbut

    How do I pass an array by parameter

    I have an array: array[4][4]; Then, I call a function: FunctionInsert(column,array(?)); This function will get the column number I passed and assign the number 1 to all lines of the column. I need to pass to the function the column number and the array that will be modified. How do I do...
  6. mheilbut

    How do I send apostrophe in file?

    Thanks people... will try to test this! Thanks for the tip!
  7. mheilbut

    How do I send apostrophe in file?

    Hi to all!! I am sending a file by ftp and I am having problems because in the file, I should be sending a name as follows: SANTA D'OESTE but unix aparently doesn't have the "'" and instead sends "´": SANTA D´OESTE. How can I send the "'" in my file in unix...
  8. mheilbut

    How do I use temp tables in Oracle8i?

    Thanx a lot all of you! I think sybaseguru's answer was especially clarifying. My question was if you could use a temp which would be created without actually using the create table, and automatically dropped after loggin off the session. As I see, this is not possible, but now I know how it is...
  9. mheilbut

    How do I use temp tables in Oracle8i?

    I was used to using the following query: Select name,sum(sal) as sum from emp where date_emp >= "01/01/2003" group by name into temp aaa Select * from aaa where sum >= 5000 The queries above are just examples. My question is, how do I use this temp table aaa in oracle? It doesn't...
  10. mheilbut

    How do I configure a network in my mac

    I have a macintosh in my company. I run a Novell network between my PC's. There are two macintosh, one of them I was able to read shared directories from other computers but nothing in the novell. The other I couldn't even see shared files from other computers. This second is an older mac and...
  11. mheilbut

    dbcontrol.mdb? how to use with normal tables?

    I have here in my company some information that come from the production of the machines which go through a collector and throws the information in a .mdb database. I have a crystal report with normal sql tables but need to use a field in the .mdb database. I can get the table I need in the...
  12. mheilbut

    Yesterday and tomorrows information???

    I have a report that show me the following: Product Order_number Shift Group 1 - Machine 101 7250125 658665 06/06/2002 18:24:20 7522548 256588 .... Group 1 - Machine 123 8347373 683234 06/06/2002 18:24:20 3837647 398373 .... I want to somehow be able to put...
  13. mheilbut

    HELP URGENT! Client appears only when filter is on!

    I have a report which for client appears his code, name, contact and others. There is one specific client that doesn't appear in my report but should be there. When a filter the report only to show me when this specific client's code appears, then he appears in my report. Also, when I get the...
  14. mheilbut

    How to read as if it was first day of month

    I have a PERL program and one of the tests in it is the following: #today's date $tday = $t[3]; $tday = &quot;0&quot; . $tday if ($tday < 10); #if today is the first day of the month if ($tday eq &quot;01&quot;) { #and if the month is January if ($tmon eq &quot;01&quot;) { # make the...
  15. mheilbut

    If expression with parameter or variable read! Help!

    Thanks, it worked! I have one more question though when I put the following before getting the $firstday in order to check if it is the first day of the month, I get an error. Can anyone tell me why? #today's date $tday = $t[3]; #if today is the first day of the month if ($tday eq...
  16. mheilbut

    If expression with parameter or variable read! Help!

    To Justice41: Where would I put $ini = join &quot;&quot;, &quot;'&quot;,$ARGV[1] || $firstday,&quot;'&quot;; $fim = join &quot;&quot;, &quot;'&quot;,$ARGV[2] || &quot;TEST&quot;, &quot;'&quot;; in my program? What part of the program would this fit in. Would I have to read $firstday before using...
  17. mheilbut

    If expression with parameter or variable read! Help!

    I get the following message using what you proposed: Use of uninitialized value in concatenation (.) at /usr/progs/pedrep.pl line 86. Michel, São Paulo, Brazil
  18. mheilbut

    If expression with parameter or variable read! Help!

    ANYONE PLEASE!! I really need this to work! Thankx! Michel, São Paulo, Brazil
  19. mheilbut

    If expression with parameter or variable read! Help!

    I tried using raider2001 idea but I didnt get it to work. I actually have two variables: (First day of month) @t = localtime(); $tmon = $t[4] + 1; $tmon = &quot;0&quot; . $tmon if ($tmon < 10); $tyear = $t[5] + 1900; $firstday = join(&quot;-&quot;, &quot;01&quot;, $tmon, $tyear); (Yesterday´s...
  20. mheilbut

    If expression with parameter or variable read! Help!

    I have a perl program which is now reading one of two possibilities: 1- The program reads two variables (ARGV[1] and ARGV[2]) which are dates that a insert as parameters ex: ./toped.pl 01/05/2002 to 31/05/2002(date in Brazil is different) 2- The seconde option is it reads a variable defined...

Part and Inventory Search

Back
Top