Forum Replies Created

Viewing 15 posts - 31 through 45 (of 63 total)

  • RE: Percentage Functionality in t-SQL

    Hi,

    I am using the data format as below.

    DECLARE @table TABLE (number nvarchar(max))

    INSERT INTO @table VALUES (4.5267489711934158E-2)

    INSERT INTO @table VALUES (8.8356729975227088E-2)

    INSERT INTO @table VALUES (9.9356025758969638E-2)

    SELECT CONVERT(VARCHAR(4),CONVERT(INT,ROUND(CAST(number AS DECIMAL(4,2)), 0))) + '%'...

  • RE: Query tuning

    Reattached the exec plan.

  • RE: Problem with linked server

    got any resolution for this..i am also facing this issue from long time back pls suggest resolution.

  • RE: Update trigger is not working

    Hi,

    My concern here is to have when ever insert has done i need to insert that record to History table" also when updated i need to track old values and...

  • RE: SSAS linked server

    Thank you much for your comments here.

    I will set the source server connection timed out to 0 and monitor for some more few days for good.Anyhow thanks for your help.

    But...

  • RE: SSAS linked server

    Hi

    Thanks for your valuable comments here.

    Also have a look at the target and the originating server properties concerning "Remote server connection" have the remote query timeout set to 0...

  • RE: SSAS linked server

    yes web user is having an access to linked server as this SSAS is hosted on the same server.

    If web user don't have access then it should failed always...

  • RE: SSAS linked server

    Hi All,

    Today again my linked server drops out and thrown with an error:

    Error: Cannot create an instance of OLE DB provider "MSOLAP" for linked server "Expense_Cube".

    Post restart of SQL server...

  • RE: SSAS linked server

    Hi,

    If that is the case it should't connect always sometime it will connect and work properly but for some other time it won't work what should be the cause for...

  • RE: SSAS linked server

    again i am getting the error

    Msg 7399, Level 16, State 1, Line 2 The OLE DB provider "MSOLAP" for linked server "" reported an error. The provider did not...

  • RE: SSAS linked server

    Hi,

    This error will not come always i have refreshed database and executed i ran successfully with out any issue.

    What could be the reason for this ?

    How do i check why...

  • RE: Work around for SQL server performance issue

    Here is my part of the query:

    CREATE PROCEDURE [dbo].[get_interaction_list_account] (

    @account_id INT = 0,

    @period INT = 0

    )

    AS BEGIN

    ...

  • RE: XML extraction from database

    Hi,

    1.The example data which i have given for only one record you may be consider for multiple records similar to that only if you want.there is no issue with data.

    2.Yes...

  • RE: Work around for SQL server performance issue

    Hi Below are the values from sys.configuration

    name |value | minimum | configuration_id |maximumvalue_in_use...

  • RE: XML extraction from database

    Hi Adi,

    I used the same query and get the result and pasted in notepad and saved file as .xml,when i opened with the IE i could see <safetyreport> as child...

Viewing 15 posts - 31 through 45 (of 63 total)