Viewing 15 posts - 76 through 90 (of 231 total)
yes .. but want to know is there is any other way w/o using xquery.
December 8, 2010 at 11:37 pm
Got the answer.... 🙂
December 2, 2010 at 4:16 am
weitzera:
I need construction logic to write the code for trigger. The problem here is everything is dynamic. When the user configures the audit Primary & Secondary, something (SP /...
December 1, 2010 at 2:40 am
Hello,
As you'r using it in Search Criteria the UDF will be called for all records for matching the search criteria.
November 30, 2010 at 2:25 am
is there is any dependecies on this table?
September 14, 2010 at 8:02 am
you need to define the archiving strategy first.
1. define the tables wants to archive
2. what would be the archiving period.
September 14, 2010 at 7:50 am
are you working with getting paid! Boooooo. and on top of it you got fired big boooooooooooo.
September 14, 2010 at 7:42 am
Please provide more information on Job, what does it do?
September 14, 2010 at 7:25 am
I think you can't do it on one sever instance.
September 14, 2010 at 7:19 am
What is the case scenario?
Why do you want to delete records from all table?
September 13, 2010 at 8:39 am
I think you can use DATEFORMAT
. it overrides the implicit date format settings.
September 6, 2010 at 8:16 am
try this....
select * from Purchasing.PurchaseOrderDetail
where case @OrderQty when 0 then OrderQty else @OrderQty end = OrderQty
and (@duedate IS NULL OR duedate = DATEADD(dd, DATEDIFF(d,0,@duedate), 0))
September 6, 2010 at 8:13 am
try this...
select * from Purchasing.PurchaseOrderDetail
where case @OrderQty when 0 then OrderQty else @OrderQty end = OrderQty
and (@duedate IS NULL OR duedate = DATEADD(dd, DATEDIFF(d,0,@duedate), 0))
September 6, 2010 at 8:11 am
trying doing it by using PIVOT operator. below is the example
DECLARE @params AS TABLE
(
ParameterID NVARCHAR(8) NOT NULL,
...
September 6, 2010 at 8:00 am
okay just putting my understanding what you are looking for is
If @assayid int > Then search by @assayid
and
If @dateassayrequested datetime is Valid date Then search by datediff
If this is...
September 6, 2010 at 7:46 am
Viewing 15 posts - 76 through 90 (of 231 total)