Filtering Datetime Parameter

Sep 21, 2013

We can use LIKE '% ...%' for character string search but how can we do the same thing to a datatime parameter like '2013-09-20 13:34:43.098'?

View 12 Replies


ADVERTISEMENT

Filtering On Small Datetime Field But Not On Time

Jan 23, 2015

I have a field that is stored as a smalldatetime but I want to filter on that field only for the date. How do I ignore the time stamp and only go by the date?

View 3 Replies View Related

Filtering The Parameter Content

Apr 18, 2007



Hello,



I have built a report using a Cube (and not a relational database).



I have a date as a parameter and I would like to filter its content: the parameter goes from 1900 to 2090 and I would like the user to see only from 2006 to 2090.



Can you help me by giving me tricks to do it ? There may have several ways of doing it but I can't find them.



Thank you in advance !

Alexis







View 3 Replies View Related

Filtering Options In A Parameter

Aug 28, 2007



Hello, I have a report in which I would like to give the user the ability to select how a parameter is filetered.
Option 1 would be to filter by a range of value ie: WHERE member.age BETWEEN (@Start) AND (@End)
-say everyone between the ages of 50 through 80
Option 2 would be to filter by specific but multiple values ie: WHERE member.age IN (@Age)
-say anyone who is 25, 50 and 75.
How can this be done? Thanks

View 5 Replies View Related

Filtering Table Name With Parameter

Apr 2, 2006

<br><br>I obtain
table names from a database and pass them to a dropdownlist. Based on
user selection, I want to pass each table name to a query.Here is an
extract from my code:
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="select * from @dDTable">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1"
Name="dDTable" PropertyName="SelectedValue" DefaultValue="product"
Direction="InputOutput" Size="15" Type="String" />
</SelectParameters>
</asp:SqlDataSource>I keep getting this error: Must declare
the table variable "@dDTable".Please does anyone knows the best way to
go about this?

View 3 Replies View Related

What Value Needs To Be Passed To Parameter In WHERE To Negate The Filtering

Apr 9, 2008

I am using two drop downs, like so:
<asp:DropDownList ID="ChurchStateDrop" runat="server"                              DataSourceID="ChurchStateDropData" DataTextField="State"                              DataValueField="State" AutoPostBack="True"                              onselectedindexchanged="ChurchStateDrop_SelectedIndexChanged"                             AppendDataBoundItems="True">        <asp:ListItem Value="?????" Selected="True" Text="All States" /></asp:DropDownList>
<asp:DropDownList ID="ChurchCityDrop" runat="server"                             DataSourceID="ChurchCityDropData" DataTextField="City"                              DataValueField="City" AutoPostBack="True"                             onselectedindexchanged="ChurchCityDrop_SelectedIndexChanged"                             AppendDataBoundItems="True">        <asp:ListItem Value="?????" Selected="True"  Text="All Cities" /></asp:DropDownList>
I have ????? in the value fields because I don't know what value needs to be passed to negate filtering (to choose all). The Dropdowns have the following SQLDatasources:<asp:SqlDataSource ID="ChurchStateDropData" runat="server"                               ConnectionString="<%$ ConnectionStrings:tceDatabaseOnlineSQLConnection %>"                                SelectCommand="SELECT DISTINCT                                                                        [State]                                                             FROM [ChurchView]"                               DataSourceMode="DataReader"></asp:SqlDataSource>
<asp:SqlDataSource ID="ChurchCityDropData" runat="server"                                ConnectionString="<%$ ConnectionStrings:tceDatabaseOnlineSQLConnection %>"                               SelectCommand="SELECT DISTINCT                                                                        [City]                                                             FROM [ChurchView]                                                          WHERE ([State] = @State)"                               DataSourceMode="DataReader">                               <SelectParameters>                                 <asp:ControlParameter ControlID="ChurchStateDrop"                                                                   Name="State" PropertyName="SelectedValue" Type="String" />                               </SelectParameters></asp:SqlDataSource>
Now, lets say I wanted to pass a value to the WHERE statement in ChurchCityDropData to coincide with 'All States', what would I replace value="??????" with? Now you may think I'm crazy to do such a thing, but this actually has to do with adding a Denomination Dropdown to show Denominations from all states or all cities. I will figure out the best logic for that later, I just want to know the wildcard to pass to the parameter to choose all states (negate filtering).

View 3 Replies View Related

Stored Procedure Parameter Filtering

Jan 24, 2008

consider a stored procedure with a parameter @OrderID, i want to perform the following query :select * from Orders where OrderID = @OrderIDi want the condition to be true when parameter @OrderId is null so what is the syntax for that? i think there is an IF CONDITION that can be embedded with where clause.

View 6 Replies View Related

How To Set A Parameter For Filtering Not Blank Records

Feb 7, 2007

In my report I want an optional parameter to filter all records with a specific field that is not blank. I tried several scenario's without result...

In the parameter I want to set a text value like "exampletext".

In the filter I want a check: if the parameter value is "exampletext", only show the records where field "abc" is not blank.

On the tab Filters from the Table properties I can set three values: Expression, Operator and Value.

Please help!

View 1 Replies View Related

Filtering Data Using A Boolean Parameter

Apr 24, 2008



Hello, I am trying to use a boolean parameter to filter data in a table, but there is something I am missing.

Basically I want something like this:
I have a boolean parameter, "EP", and I have a filter set on my table as:

Expression Operator Value
=Fields!REFERRAL_SOURCE.Value = IIF (Parameters!EP.Value, "1297", ????)

Using the filter tab, I can't specify an expression for the 'Operator' so I was trying to work it out using either '=' or 'like'. What needs to go into the ???? in order for the referral source to be "not 1297" (i.e. the inverse of the filter)?

Or, am I completely missing an easy way to do this?

Thanks.

View 4 Replies View Related

How To Ignor Filtering Criteria If There Is A Null Value For Parameter

May 15, 2008

I have gridview and i want to ignor that filtering if that parameter is empty how do i write that query.
my query is
select * from UserMAster where UserId=@USerID and RoleId=@RoleId
if @UserId is blank then i want to select all records without filtering with user Id a
nd if i have passed null or anything as parameter in roleId then alsoi want all the records if it contain value then i want to do filetring is it possible to with query. or else send me some alternative so that i don't need to execute more query.
 

View 7 Replies View Related

Filtering A Report On A DateTM Field Using A Parameter If Possible?

Apr 13, 2007

I am currently writing a report that will use as one of the filters the date (in this case it is the date of service of a physician office visit).

however the DB developers included the date and the time of the visit in one field so my resulting data set contains 4/13/2007 4:30pm for example, so using an @date parameter as a filter on the data field doesn't work because when you run the report and enter the date in the parameter it doesn't return anything.



I am an SQL Report writer amateur so I am sure there is an easy fix, any and all help will be appreciated.



Mark



View 7 Replies View Related

Filtering Parameters Based On A Selection Of Another Parameter

Dec 28, 2007



Hi,

Im trying to create a drop down parameter whereby if i select a certain field, a different dropdown will be filtered off only the relevant selections, is this possible.

View 7 Replies View Related

Filtering Data Based On Select Parameter Values

Jun 6, 2006

Hi,

I am using SQL 2005. I have a SELECT query in a stored proc with 3 parameters:
@subaccount,@numDaysCutoff,@numDaysPcts. The proc needs to be modified to return data when subaccount values are any of these:

FRRIJ
FRRIC
FRMM
ROBECO
FRJV
MAIL
FRUKV
FRICE

Currently I use a WHERE condition and am able to get data correctly. However, for a NULL value I should get everything including those not in the above list. Should I use CASE statement instead? How?

@subaccount VARCHAR(8) = NULL
, @numDaysCutoff INT = 1
, @numDaysPcts INT = 1

SELECT Subaccount = ISNULL(h.subaccount, lo.subaccount)
, SecurityID = ISNULL(h.security_id, lo.security_id)
, SecurityName = s.name
, QtyHeldAndPending = ISNULL(h.quantity, 0) +
(CASE WHEN lo.type = 1 THEN lo.resulting_quantity * (-1)
WHEN lo.type = 2 THEN lo.resulting_quantity
ELSE 0 END )
, L.AverageDailyVolume
, XDaysVol = L.AverageDailyVolume * @numDaysPcts
, CutoffVol = L.AverageDailyVolume * @numDaysCutoff
, DaysVolHeld = h.quantity / NULLIF(L.AverageDailyVolume, 0)
, HeldPctNDaysVol = h.quantity / NULLIF((L.AverageDailyVolume * @numDaysPcts), 0) * 100
, TargetedHoldingsUSD = tm.ApprovedPortfolioTarget * iv.value_usd
, CutoffVolUSD = L.AverageDailyVolume * @numDaysCutoff * s.price_usd
, TargetedPctNDaysVol = (tm.ApprovedPortfolioTarget * iv.value_usd) /
NULLIF((L.AverageDailyVolume * @numDaysPcts * s.price_usd), 0) * 100
, DaysVolTargeted = (tm.ApprovedPortfolioTarget * iv.value_usd) /
NULLIF((L.AverageDailyVolume * s.price_usd), 0)
, NDaysCutoff = @numDaysCutoff
, NDaysPcts = @numDaysPcts
FROM subaccount_positions_table h --vGlobalHoldings h
JOIN iv_subaccount_table iv ON iv.subaccount = h.subaccount
FULL OUTER JOIN LiveOrders lo ON lo.subaccount = h.subaccount AND lo.security_id = h.security_id
FULL OUTER JOIN TM_DerivedSecurityTargetDetail tm ON tm.Subaccount = h.subaccount AND tm.SecurityID = h.security_id
LEFT JOIN dbo.security_table s ON s.security_id = COALESCE(h.security_id, lo.security_id)
LEFT JOIN dbo.SecurityLiquidity L ON L.SecurityID = h.security_id AND SourceID = 99
WHERE (h.subaccount = ISNULL(@subaccount, h.subaccount)
OR lo.subaccount = ISNULL(@subaccount, h.subaccount) )
AND status = 1
AND ( h.quantity > (L.AverageDailyVolume * @numDaysCutoff) -- qtyHeld > XDaysVol
OR -- Targeted Vol exceeds cutoff
ISNULL((tm.ApprovedPortfolioTarget * iv.value_usd), 0) >
ISNULL((L.AverageDailyVolume * @numDaysCutoff * s.price_usd), 0) -- Target > XDaysVol
)
ORDER BY ISNULL(h.subaccount, lo.subaccount), ISNULL(h.security_id, lo.security_id)

Thanks in advance!!!
sqlnovice123

View 2 Replies View Related

Gridview - SqlDatasource - How Do You Get All Values For A Like Text Parameter Or A Boolean Field When Filtering?

Mar 18, 2008

I have a gridview connected to a sqldatasource, and it works pretty good.  It gives me the subsets of the information that I need.  But, I really want to let them choose all the companies and/or any status.  What's the best way to get all the values in the gridview...besides removing the filters :)
I thought the company would be easy, I'd just set the selected value to blank "", and then it'd get them all....but that's not working.  And, for the boolean, I have no idea to get the value without having a separate query.
(tabs_done=@tabsdone) and (company like '%' + @company + '%')1 <asp:DropDownList ID="drpdwnProcessingStatus" runat="server">
2 <asp:ListItem Value="0">Open</asp:ListItem>
3 <asp:ListItem Value="1">Completed</asp:ListItem>
4 </asp:DropDownList>
5
6
7 <asp:DropDownList ID="drpdwnCompany" runat="server">
8 <asp:ListItem Value="">All</asp:ListItem>
9 <asp:ListItem Value="cur">Cur District</asp:ListItem>
10 <asp:ListItem Value="jho">Jho District</asp:ListItem>
11 <asp:ListItem Value="sea">Sea District</asp:ListItem>
12 <asp:ListItem Value="san">Net District</asp:ListItem>
13 <asp:ListItem Value="sr">Research District</asp:ListItem>
14 </asp:DropDownList>
15
16
17 <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:HRFormsConnectionString %>"
18 SelectCommand="SELECT DISTINCT [id], [lastname], [company] FROM [hr_term] hr where (tabs_done=@tabsdone) and (company like '%' + @company + '%')">
19 <SelectParameters>
20 <asp:ControlParameter ControlID="drpdwnProcessingStatus" DefaultValue="0" Name="tabsdone" PropertyName="SelectedValue" />
21 <asp:ControlParameter ControlID="drpdwnCompany" DefaultValue="" Name="company" PropertyName="SelectedValue" />
22 </SelectParameters>
23 </asp:SqlDataSource>
24

 

View 3 Replies View Related

DateTime As One Parameter

Aug 28, 2006

I have this question in one gridview: InsertCommand="INSERT INTO [Member] ([IC], [FirstName], [LastName], [Gender], [Birth], [Telephone], [Mobile], , [Address], [Postcode], [TimeOfRegistration]) VALUES (@IC, @FirstName, @LastName, @Gender, @Birth, @Telephone, @Mobile, @Email, @Address, @Postcode, @TimeOfRegistration)"If I want to insert into TimeOfRegistration with "System.DateTime.Today",can I have some expression to replace the "@TimeOfRegistration" in the SQL query? (<%#      %>???Maybe?) If cannot, in the parameter control below, can I put it this way to achieve it?  <asp:Parameter Name="TimeOfRegistration" Type=DateTime DefaultValue="<%#                    %>" />If so, how to put it?  Thank you very much! 

View 4 Replies View Related

Datetime Parameter

Mar 18, 2008

Hi, I need help please.

I have two tasks.
1. SQL Execution task to output a variable which must be a datetime value "2007/12/31 00:00:00.000"
Variable name: Test
Value Type: Datetime
Value: 2007/12/31 00:00:00.000

2. Then in my OLEDB source i want use the parameter:
I have setup the parameters for QRY = 0 (Test)
QRY: WHERE WT.ApplyDtm = ?

I have two problems to this:
1. How do i know that my first task is bring back a value of datetime
"2007/12/31 00:00:00.000"
2. In my QRY i have to put the parameter within '' , I tried '?' but
it maons.
The QRY should run: WHERE WT.ApplyDtm = '2007/12/31 00:00:00.000'


Please Assist!

Regards

View 2 Replies View Related

? Datetime Parameter Issue

Sep 16, 2005

I'm using a sproc to insert the time (Now()) into a datetime field.  Somehow the time "seconds" are not making it into the field.  For example, the variable grabs the value of Now() - "9/16/2005 01:58:15 AM" to insert into the field.  But when I view the records, the datetime value is "2005-09-16 13:58:00.000".What am I doing wrong?Thanks for your help!LynnetteHere is a snippet of the code and the sproc:Dim recDate As DateTime = Now()cmd.Parameters.Add(New SqlParameter("@DELastChg", SqlDbType.DateTime)).Value = recDateALTER         PROC usp_AddTmpFLSAfromPT  @dtWdate datetime,  @whereString as varchar(255),  @DEuser as varchar(30),  @DELastChg datetime
AS
DECLARE @strSQL as varchar(2000)
SET @strSQL ='INSERT INTO tmpFLSAEmpInfo( Emp_Number,  PT_ID,  Emp_Division,  Emp_Dept,  --Emp_DeptInfo,  Emp_Supervisor,   Emp_Location,  Emp_Union,   Emp_SG,  Emp_Shift,  DEusername,  DELastChg,  WrkDate)SELECT  Employee2.Emp_Number,  Employee2.[ID],  Employee2.Division,  Employee2.Job_Dept_Code,  Employee2.Job_Supervisor,  Employee2.Loc_Name,  Employee2.[Union],  Employee2.Sched_Group,  Employee2.Shift,   ''' + @DEUser + ''',   ''' + CONVERT(varchar, @DELastChg) + ''',     ''' + CONVERT(varchar, @dtWdate) + '''
FROM Employee2WHERE ' + @whereString
EXEC(@strSQL)

View 3 Replies View Related

Datetime Parameter Problems

Jun 20, 2007

Hi everyone

I have been reading another thread about this subject, but didn't get much useful info from it.

I have a datetime parameter on my report that is set to today() by default.

I use the User!Language to ensure that dates are formatted correctly (my end-users are Danish, Spanish, English)

Everything works fine on the preview tab, but when I access the deployed report through a link to the report server on a HTML-page the formatting of the date becomes US-style. This leads to further problems, as the report can not be processed because another format is expected (probably due to the User!Language settings on the report - in my case Danish).



I need to find a solution, that does not remove the dynamics of being able to run in different language settings (I saw in the other thread that one solution could be to hard code a statement with a specific language setting - that is not an option for me).



Hope someone can help

View 8 Replies View Related

Report Parameter DateTime

May 13, 2008

I have drop down Date Range(Last Month,Current Month and Custom)..
We need to set the values in our From Date Report Filter and To Date Report Filter.
We gave the Date Parameter Value in Condition to the Date Range Selected Value.
But the value always remain as on First Load of Report.

Is there any way i can set values in datetime text box..
.

View 1 Replies View Related

DateTime Parameter With NULL Value

Apr 8, 2008

Hi,
I have a report with datetime parameter which is required to be optional (there should be an option not to select this parameter which would cause in not narrowing result of this report by this parameter).

I used datetime parameter (to have the calendar control for selecting date) for which I enabled NULL value. The result is that next to this parameter there is a checkbox "NULL" which allows to send NULL as a value of this parameter. Everything is fine except for the prompt: "NULL"... Is there a way to change it? I would see there something like "Empty" or "Not selected", which would be understandable for users of the report.

Or is there any other way to send an empty date as a value of this parameter? (Setting some unusual value like 1/1/1900 for empty date is not sufficient as the empty value shouldn't appear in the parameter control).

Thank you,
Michal

View 9 Replies View Related

SP Datetime Parameter Problems

Jun 21, 2006

DROP TABLE TestTable

CREATE TABLE TestTable (
 StID tinyint NOT NULL ,
 StDate datetime NULL ,
 Amt float NOT NULL CONSTRAINT [DF_TestTable_Amt] DEFAULT (0),
 CONSTRAINT [PK_TestTable] PRIMARY KEY  CLUSTERED
 (
  [StID]
 )  ON [PRIMARY]
) ON [PRIMARY]
GO

/*
And After i'll create insert SP useing 'CREATE STORED PROCEDURE WIZARD'
Sp name:'insert_TestTable_1'
And Pass Some Parameter values
*/

Exec insert_TestTable_1 1,getdate(),50.25

--gives Error
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near ')'.

waht is that problem need help..

View 4 Replies View Related

Problem With Datetime Value As Parameter Value

Mar 20, 2006

Hi all,

I created a stored proc that has input datetime parameters (begindate and enddate), I tried the command: exec storedproc '20060320'
in the query command part in Microsoft SQL Server Management Studio and
it works but when I try to create a report dataset using the stored
proc and execute it using value 20060320 it does not work. I even try using '20060320' and "20060320" as the value and it did not work also. I received the following error:



TITLE: Microsoft Report Designer

------------------------------



An error occurred while executing the query.

Failed to convert parameter value from a String to a DateTime.



------------------------------

ADDITIONAL INFORMATION:



Failed to convert parameter value from a String to a DateTime. (System.Data)



------------------------------



String was not recognized as a valid DateTime. (mscorlib)



------------------------------

BUTTONS:



OK

------------------------------



Anyone have any idea on how can I solve it or go about it?? Thanks in advance.



Daren

View 8 Replies View Related

Default DateTime Parameter

May 21, 2008



I am trying to set the default date in my datetime parameter to yesterday's date, so the user does not have to select using the datepicker calendar. I am using Visual Studio 2005.

I put the following code into the Report Parameters non-queried default values function line, but it adds the timestamp to the date.

=DateAdd(€?d€?, -(WeekDay(Now()))+1, Now())


How can I get yesterday's date to default but without the timestamp?

Thanks!

Marissa

View 6 Replies View Related

Format Of Datetime Parameter

Mar 27, 2008



I have datetime parameter but SSRS used mm/dd/yyyy format.
How can I change to dd/mm/yyyy format ?

in dataset I used convert(datetime,@dateparam,103) but I get error if I select for example 14/03/2008
"The value provided for the report parameter 'dateparam' is not valid for its type

View 9 Replies View Related

Set NULL To Datetime Parameter

Dec 14, 2006

Hi All,

I have a problem while trying to set "NULL" value to my datetime parameters.

I have two datetime parameters (AllowNull=True) on my report. (BeginDate and EndDate)

it works fine in preview mode in reporting design.

The problem occurs, if I try to set an emtpy value to these parameters in my asp.net application.

The code looks like;

Dim repParams(1) As ReportParameter

repParams(0) = New ReportParameter("BeginDate", String.Empty)

repParams(1) = New ReportParameter("EndDate", String.Empty)

-----

ReportParameter method requires String parameters. If user set any datetime value, I am sending "String.Empty" value to my paramaters in order to set them as NULL. But I am getting "rsReportParameterTypeMismatch Error."

How Can I set NULL value to these parameters from asp.net application?

Thans alot in advance.

View 9 Replies View Related

Problems Passing Datetime Parameter To SQL

May 11, 2006

I'm developig an ASP.NET application and I'm trying to pass a datetime parameter into my stored procedure.  The procedure is very simple "SET @sqlMessage = @parameterPassed" I have the @sqlMessage setup as out OUTPUT parameter and I'm trying to see what I get.  So far no go.  The datetime value is of type string, and it was retrived from a datetime column in an SQL database.  Any ideas.
Thanks.

View 1 Replies View Related

Debugging And Datetime Parameter Modification

Nov 23, 2007

Hi

I'm wondering about datetimes modification while debugging. I've a backup of a db debugging searching for some answeres. Problem is I have to asume it's one month back in time, so when I get the value from some date functions, if I after that modify the date value displayed for the parameters (debugging with vs pro 2005) will it be my modified values that it uses when those variables are used? It seams like it, but I'd like to be 100% sure.

Thanks

View 5 Replies View Related

Newbie Datetime Parameter Problem

Jan 29, 2007

Hi, I have setup start date and end date parameters, however when my select gets the results from between the dates, if the dates are both set to today, no results are produced. I think its because I need to add a day to the end date parameter. How can I do this?

Thanks, Dan

View 3 Replies View Related

DateTime Parameter Format Issue?

Nov 26, 2006

Hi All:

I create a report with a DateTime parameter, i would love to use DD/MM/YYYY this format, but it doesn't work . it works when i change to usa datetime format ,YYYY-MM-DD,

any helps are appreciated.

thanks

Nick

View 5 Replies View Related

Datetime Parameter / Report Viewer

Apr 2, 2007

I have a .net 2.0 web form with a report viewer control (RS 2005) and have hard coded the report server and path. The report has two date time parameters that have a default value set up. When the user clicks the calendar icon to change the date range, the page refreshes without displaying the calendar... I don't remeber having this problem in the past. The parameters function fine in Report Manager. Any idea what could be causing this?



View 1 Replies View Related

Filter Multivalue DateTime Parameter

Apr 16, 2007

Hi all,



I am using stored procedure dataset. i tried filtering the dataset values with the parameter of type datetime.I am able to view and select multiple datetime value from the list. but its not filtering the values.

i changed the parameter datatype to string but it works only for the first value

(parameter. <pname>.value(0)). if i filter with the array value (parameter. <pname>.value) am getting error (Failed to evaluate Filter expression).



I guess the problem with datatype. Pls help me if anyone have idea about this.







View 5 Replies View Related

Issues In Passing Parameter (datetime)

Jan 3, 2008


Hi Everyone,

The SSIS is behaving very strange to me in the below scenario (Do excuse me if that€™s the behavior, I might not be knowing).

What I€™m doing is,

Step 1: Select Max(Date_Created) from Table1 -> I€™m storing the result in a parameter named Max_Date_Created.

The above one returns the value as : 2008-01-01 10:10:10.874

Step 2: Update Control_Table Set Last_Updated_Date = ? -? I€™m passing the parameter for updating the control table.

Step 3: Select Last_Updated_Date from Control_Table

To my astonishment, it returns the value as 2008-01-01 10:10:10.000. Shouldn€™t it be 2008-01-01 10:10:10.874?

The above implementation taking me for the duplication entries in the table. How to get milliseconds also? Why it€™s rounding?

Any suggestions please?

Thanks
Selva

View 1 Replies View Related

Is There A Way To Default DateTime Parameter To Blank?

Jul 13, 2007

I have a visible DateTime parameter on the Report that I would like to make optional.

When I open up the report and try to run it without specifying the date I get a validation error that parameter is required. If I set default value to null - it works, but I have to check for both '' and NULL in my query:

StartDateTime >= @StartDate OR @StartDate='' OR @StartDate IS NULL

I tried setting default parameter using expression
=''
but I get an error that
'Default Value' of parameter 'StartDate' doesn't have expected time.

So the question is can I set DateTime parameters' default value to blank?

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved