Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 6,395 total)

  • RE: Rebuild Indexes

    Rebuilding an index also rebuilds that indexes statistics.

    I would recommend getting copies of Ola Hallengren's index maintenance and statistics script and seeing how he calculates what statistics needs updating.

  • RE: Tricky Problem with Group by Clause

    pshrvankumar (11/4/2015)


    Hi Jeff, I dint get you. Am working on a task to get the data into the grid but am stuck with this issue. Kindly help..

    What Jeff is asking...

  • RE: Are the posted questions getting worse?

    Jeff Moden (11/4/2015)


    anthony.green (11/4/2015)


    Jeff Moden (11/3/2015)


    No takers on the job description I posted a while back?

    Remote working an option?

    Unfortunately, probably not for this one, Anthony. I will...

  • RE: Today's Random Word!

    TomThomson (11/4/2015)


    DonlSimpson (11/4/2015)


    Weak

    frail

    Old

  • RE: Importing Spreadsheets

    How are you importing the spreadsheets? A for each file loop? If so you would have a variable to switch out the connection string to the spreadsheet.

    I would...

  • RE: Login failed to access SQL

    Are the members of the group part of another group which has deny connect at the server level.

    Can you post the full error message including the 18456 error state and...

  • RE: Ola Script: Online Index rebuild on Web Edition

    No you could still rebuild offline, just need to add

    INDEX_REBUILD_OFFLINE

    To the list of options

  • RE: Ola Script: Online Index rebuild on Web Edition

    Online indexing is an Enterprise only feature, so all you will ever get on a Web box with them parameters is reorganization.

  • RE: Today's Random Word!

    djj (11/4/2015)


    Top

    Spinning

  • RE: Maintenance Plan Cleanup of Network Share

    As long as the account in question has access to the share there shouldn't be no problems.

  • RE: Merge Replication (Timeouts)

    It depends, run the query filter out small page tables (page_count > 1000) filter out all heaps (index_id <> 0) what are you left with?

    That details what in Microsoft's eyes...

  • RE: Excel report too slow when exported from SSRS

    Only thing I can think of is have two reports, one with all the formatting, one with just the data grid, then open the data grid in excel, or export...

  • RE: tsql query - if exists placement theory for optional tables

    Does this give the expected outcome

    CREATE TABLE #Surgery

    (CaseID int,

    Patient VARCHAR(10)

    )

    INSERT INTO #Surgery VALUES

    (101,'SallyDoe'),

    (102,'JohnDoe')

    CREATE TABLE #Anesthesia

    (

    CaseIDINT,

    CrnaID VARCHAR(10)

    )

    INSERT INTO #Anesthesia VALUES

    (101,'Melvin'),

    (102,'Bart'),

    (102,'Jack')

    CREATE TABLE #AnesthesiaTime

    (

    CaseID INT,

    CrnaID VARCHAR(10),

    TimeIn CHAR(4),

    TimeOut CHAR(4)

    )

    INSERT INTO #AnesthesiaTime VALUES

    (102,'Jack','0800','1030'),

    (102,'Bart','1030','1130'),

    (102,'Jack','1130','1215')

    ;with...

  • RE: Today's Random Word!

    Ed Wagner (11/4/2015)


    anthony.green (11/4/2015)


    Ed Wagner (11/3/2015)


    whereisSQL? (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    eccentricDBA (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    DonlSimpson (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    anthony.green (11/3/2015)


    Base

    Operations

    Logistics

    Inventory

    Perpetual

    Motion

    Machine

    Time

    Paradox

    Logical

    Physical

    structure

    Base

    Table

  • RE: SQL server User

    You can use xp_logininfo to enumerate the members of a group

    EXEC xp_logininfo 'DOMAIN\GroupName', members;

    The following will find all deny permissions on objects

    select

    accounts.name AS UserName,

    OBJECT_NAME(major_id) AS Object,

    permission_name,

    state_desc

    from sys.database_permissions perms

    inner join...

Viewing 15 posts - 1,801 through 1,815 (of 6,395 total)