Viewing 7 posts - 1 through 7 (of 7 total)
Hi Vijay,
Thanks for the advice, but I was really wanting to use a boolean parameter, the True/False radio buttons of boolean parameters will be easier for users, one click not...
October 2, 2008 at 12:33 pm
abhijeetv (9/29/2008)
September 29, 2008 at 8:40 am
abhijeetv (9/29/2008)
have you already tried:WHERE REG_DATE BETWEEN isnull(@REG_START_DATE,REG_DATE) AND isnull(@REG_END_DATE,REG_DATE)
Hi abhijeetv
I've just tried your suggestion, but it failes on the second option,
2. ...
September 29, 2008 at 4:13 am
These are my parameters
@TMC_pNAME_ID VARCHAR(500) ,
@TMC_pROLE_TYPE_ID INT ,
@TMC_pCATCHWORD VARCHAR(500) ,
@TMC_pStates VARCHAR(500) ,
@TMC_Status_label VARCHAR(500) ,
@TMC_pStart_date datetime ,
@TMC_pEND_date datetime
The multi value parameter which I started this thread on is the @TMC_pNAME_ID...
September 26, 2008 at 8:53 am
Firstly. Thanks to everyone for their help, However i'm still stuck.
I've now got two problems
1. I've followed the link from Medhivanan and added the following to my...
September 26, 2008 at 8:31 am
bkDBA (9/23/2008)
But I'd really like to do this using SQL as much as possible, Do you know if I'd be able to use a case statement using an 'in' and...
September 24, 2008 at 1:57 am
Then your custom code would do something like this:
[font="Courier New"] Function BuildWhere(ByVal NameList As String) As String
Dim strWhere As String = "Where "
Dim strNames As String() = NameList.Split(",")
Dim i As Integer...
September 23, 2008 at 9:39 am
Viewing 7 posts - 1 through 7 (of 7 total)