Forum Replies Created

Viewing 15 posts - 4,891 through 4,905 (of 8,761 total)

  • RE: Making Dashboard in Excel from the SQL Queries

    bhaskar.thapa (7/20/2015)


    Hi,

    Currently i have set of queries which i run for data extraction and result pasted in Excel table so that my pivot table and Chart gets populated along...

  • RE: Distinct performance

    Quick questions, what are the server's specs? What is the cost threshold for parallelism? What are the tempdb configurations? Can you post the execution plans? Any indices on the table?

    ๐Ÿ˜Ž

    Edit:typo

  • RE: Not able to create temporal table

    Although I havenยดt seen anything stating that the temporal tables are Enterprise only feature, itยดs certainly starting to look like it is.

    ๐Ÿ˜Ž

  • RE: Not able to create temporal table

    kapil_kk (7/18/2015)


    HI friends,

    I was trying to create temporal table feature which gets introduced in SQL Server 2016 but I am getting this error while trying to create it;

    Cannot enable compression...

  • RE: Today's Random Word!

    jasona.work (7/17/2015)


    djj (7/17/2015)


    crookj (7/17/2015)


    Ed Wagner (7/17/2015)


    Jeff Moden (7/16/2015)


    SQLRNNR (7/16/2015)


    clam

    fn_clam ๐Ÿ˜€

    Oyster

    Pismo (The Great Clam Festival)

    Geoduck

    Dirty

    Read

  • RE: SQL Server 2008 Ran out of Disk Space

    Peter19898 (7/17/2015)


    Hi

    One of our SQL servers ran out of disk space and we received an error stating that the transaction log file was full for one of our Sharepoint content...

  • RE: TCP Provider: An existing connection was forcibly closed by the remote host.

    Looks to me like a permission issue (the credentials used for running the package), was anything changed that could affect this. Seen similar in the passed where permissions to read...

  • RE: Inserting Dummy Records using loop statement

    darren-hong (7/17/2015)


    Hi all,

    I have the following attributes in this Table A.

    1) Location_ID (int)

    2) Serial_Number (nvarchar(Max))

    3) KeyID (nvarchar(max)

    4) Reference_Address (nvarchar(max)

    5) SourceTime (datetime)

    6) SourceValue (nvarchar)

    I am trying to create 1000000 dummy records...

  • RE: Field Sorting Acending where Nulls are last

    Lynn Pettis (7/16/2015)


    Here is another way to accomplish the task with no need to create a sort column in a CTE.

    SET NOCOUNT ON;

    DECLARE @TEST_NULL_SORT TABLE (AREA VARCHAR(50) NOT NULL, CATEGORY...

  • RE: Improving Performance of Logging Tables (Inserts only)

    Further on Gail's and Steve's replies, don't ponder on how before you can identify and quantify the potential problem. If there are only 10-20 inserts per second, each record would...

  • RE: Improving Performance of Logging Tables (Inserts only)

    Bharatvip (7/15/2015)


    We are building a new environment and have got a Sql Server with 32 GB memory, 32 core 2.00 GHZ CPU, a Sql 2012 installation. We have about 6...

  • RE: Value of Buffer Cache Hit Ratio

    Arjun SreeVastsva (7/16/2015)


    Hey,

    what is better values for Buffer Cache Hot Ratio in SQL Server 2012.

    is the values changed from 2008r2 to 2012?

    Depends on few things but one aims as close...

  • RE: Field Sorting Acending where Nulls are last

    Does not exist in SQL Server but a workaround could be adding a sort column

    ๐Ÿ˜Ž

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @TEST_NULL_SORT TABLE (AREA VARCHAR(50) NOT NULL, CATEGORY VARCHAR(50) NULL);

    INSERT INTO...

  • RE: Migrating SSAS cubes to different instasnces

    Quick thought, normally I would script out A, do whatever modificarions needed and then run the scripts on B and full rebuild.

    ๐Ÿ˜Ž

  • RE: How to handle 1 to n mapping in my case? Thanks

    halifaxdal (7/15/2015)


    Thanks Drew, Eirikur, Scott

    I have decided to take your suggestion and create another bridge to avoid using the painful concatenated values in a column.

    Glad you made the right decision,...

Viewing 15 posts - 4,891 through 4,905 (of 8,761 total)