Forum Replies Created

Viewing 15 posts - 76 through 90 (of 232 total)

  • RE: Returning row based data from XML

    yes .. but want to know is there is any other way w/o using xquery.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: User does not exist or you do not have permission issue

    Got the answer.... 🙂

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Creating Dynamic triggers

    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 /...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: How many times UDF is called

    Hello,

    As you'r using it in Search Criteria the UDF will be called for all records for matching the search criteria.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Changing an ID interger type field to a bigint field in a HUGE table

    is there is any dependecies on this table?

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Archiving tables

    you need to define the archiving strategy first.

    1. define the tables wants to archive

    2. what would be the archiving period.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Getting Fired from an Unpaid Job.

    are you working with getting paid! Boooooo. and on top of it you got fired big boooooooooooo.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Blocked job

    Please provide more information on Job, what does it do?

    Abhijit - http://abhijitmore.wordpress.com

  • RE: SQL SERVER 208 FAILOVER CLUSTERING

    I think you can't do it on one sever instance.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Does anyone have a SQL procedure to delete ALL records in a DB ?

    What is the case scenario?

    Why do you want to delete records from all table?

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Globally change Date Format

    I think you can use DATEFORMAT. it overrides the implicit date format settings.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Stored Procedure problems

    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))

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Stored Procedure problems

    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))

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Table pivot

    trying doing it by using PIVOT operator. below is the example

    DECLARE @Params AS TABLE

    (

    ParameterID NVARCHAR(8) NOT NULL,

    ...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Stored Procedure problems

    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...

    Abhijit - http://abhijitmore.wordpress.com

Viewing 15 posts - 76 through 90 (of 232 total)