Forum Replies Created

Viewing 15 posts - 12,781 through 12,795 (of 26,486 total)

  • RE: Advice?/Suggestions?/Recommendations?: Configuration & Implementation

    Felicia Coons (4/17/2012)


    I'm attempting to develop a scale out plan for existing SQL Servers. Current configuration is irrelevant--let's just say I was thrown a garbled mess and tasked with "fixing"...

  • RE: Get data from oracle function that returns refcursor

    a2zwd (4/17/2012)


    HI

    Thanks for the reply. Could you reply with some example please?

    Nope, I wasn't involved in the consuption of the reference cursors. All I did was provide the other...

  • RE: error with insert statement

    S_Kumar_S (4/17/2012)


    Most likely, length of data from your select table exceeds the lenght of data in your test table. Check for lengths of columns in both tables.

    Nothing like stating the...

  • RE: Stored Procedure Insert/Update Issue.

    Rank1_nj (4/17/2012)


    This is the create table queries: CREATE TABLE [dbo].[MainMaster](

    [User] [int] NOT NULL,

    [ID] [int] NOT NULL,

    [Price] [money] NULL,

    PRIMARY KEY CLUSTERED

    (

    [User] ASC,

    [ID] ASC

    )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]

    ) ON [PRIMARY]

    CREATE...

  • RE: error with insert statement

    What about the table from which the data is being selected, Channels2? Would help to see its definition as well.

  • RE: load balancing solution in SQL Server 2008?

    Felicia Coons (4/17/2012)


    Traditional load balancing can't be done on servers with SQL Server (data gets out of sync as soon as a write is made to one of them). However,...

  • RE: Dropping indexes with low read to write ratio?

    Be very careful dropping indexes. An index you drop may not appear to be used but it may be critical to a process or report that is run infrequently...

  • RE: how can i insert in udf

    Eugene Elutin (4/17/2012)


    Looks like OP need just a running total.

    My be sample provide is not very exact đŸ™‚

    Already suggested that and was told no, it wasn't a running total. ...

  • RE: Index Rebuild and Fillfactor

    PiMané (4/17/2012)


    Thanks.. that's probably it... it has very low amount of data.

    In addiction, what's the "optimal", if possible, fillfactor value? 90?

    Thanks,

    Pedro

    Simple answer, it depends. It depends on the activity...

  • RE: Changing db autogrowth & autoshinkconfiguration

    First, be sure to disable autoshrink.

    Second, your autogrowth settings should be set to a fixed amount not a percentage. Also, don't rely on it. Set your databases to...

  • RE: how can i insert in udf

    Jan Van der Eecken (4/17/2012)


    How about

    SELECT *

    FROM

    (

    VALUES

    ( 0, NULL ),

    ( 2.78,...

  • RE: Appending

    If you aren't getting the answers you need, it is because you haven't given us what we need to best answer your question. Please provide the DDL (CREATE TABLE...

  • RE: Get data from oracle function that returns refcursor

    Haven't had to do this, when I wrote SQL Code for Oracle, I returned the reference cursors, others had to deal with the information.

    What I can tell you is that...

  • RE: Help with query with repeated sub query...

    In addition to the information requested by Sean, please post the code for all functions used in your queries.

  • RE: Stored Procedure Insert/Update Issue.

    Please post DDL (CREATE TABLE statement) for the table(s) involved, sample data (series of INSERT INTO statements) for the table(s), sample updates to be used to update appropriate tables, expected...

Viewing 15 posts - 12,781 through 12,795 (of 26,486 total)