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...
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...
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...
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...
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...
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...
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...
...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 accept the...
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...
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...
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...
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...
I have a PERL program and one of the tests in it is the following:
#today's date
$tday = $t[3];
$tday = "0" . $tday if ($tday < 10);
#if today is the first day of the month
if ($tday eq "01")
{
#and if the month is January
if ($tmon eq "01")
{
# make the...
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...
To Justice41:
Where would I put
$ini = join "", "'",$ARGV[1] || $firstday,"'";
$fim = join "", "'",$ARGV[2] || "TEST", "'";
in my program?
What part of the program would this fit in.
Would I have to read $firstday before using...
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
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 = "0" . $tmon if ($tmon < 10);
$tyear = $t[5] + 1900;
$firstday = join("-", "01", $tmon, $tyear);
(Yesterday´s...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.