Enter Keywords:
1 - 10 of 239(0.001 seconds)
Sort By:
 
My vbscript reference says the right way to check for a null field is:   isNull ( mystring ) so why doesn't this work? if ( IsNull( sList ) ) then      'do nothing       else       Re...
Zones: ASPDate Answered: 02/21/2000 Rating: 7.6 Views: 0
Hi, I need to update a column (+1) for all entry matching in a list. UPDATE table SET err = isNull(0,err) + 1 WHERE custno in (@list)
Zones: MS SQL ServerDate Answered: 01/03/2003 Rating: 7.6 Views: 0
Hi This may be very basic question - but can I use isnull while creating a view e.g is this ok. SELECT               (isnull(B.field1,0)/B.field2) NET, FROM                TABLE1 ...
Zones: OracleDate Answered: 03/19/2003 Rating: 8.2 Views: 0
I have a library database with a field for author's last name and another for first name.  I am trying to design an "author search" query for the library.  The first and last name for the search ar...
Zones: MS AccessDate Answered: 04/25/2003 Rating: 5.8 Views: 0
for a table temp which have a column is named id varchar(20) in select clause select 1 from temp t where isnull((select id from temp where t.id= id and 1=2 ), '2')  =  '2' will reutrn n...
Zones: SybaseDate Answered: 07/11/2004 Rating: 7.4 Views: 0
in vb6 there was IsNull()... is there a replacement in vb.net?    - Marc
Zones: Visual BasicDate Answered: 12/01/2003 Rating: 9.2 Views: 110
Hello, Here's the problem. if this (If Form2.SetAlertsViewer.ListItems(H).ListSubItems(1) = "Source Interface" Then) isn't true SourceIntCol collection never gets built and this (If SourceIntCol...
Zones: ProgrammingDate Answered: 04/14/2004 Rating: 5.8 Views: 36
I have a problem...I have the following code to display inventory values for groups in a web page.  i am able to display the information if the value is either null or greater than 0....but i get a...
Zones: ASPDate Answered: 04/11/2005 Rating: 7.6 Views: 0
with regards too the below sp, would it be possible too pick up A.GrandTotals that are 0? would it be using ISNULL @surname nvarchar(25), @start nvarchar(20), @end nvarchar(20) AS SELECT...
Zones: MS SQL ServerDate Answered: 07/15/2005 Rating: 8.6 Views: 0
Here's what I'm trying to do in a crystal running total, but i get an error on the isnull(previous({PolicyBaseView.DateofDeath}))  part. Is there a way to read null from a previous record. I need t...
Zones: Crystal Reports SoftwareDate Answered: 12/21/2005 Rating: 8.4 Views: 0