Viewing 15 posts - 1,801 through 1,815 (of 6,395 total)
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.
November 5, 2015 at 2:54 am
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...
November 5, 2015 at 1:58 am
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...
November 5, 2015 at 1:38 am
TomThomson (11/4/2015)
DonlSimpson (11/4/2015)
Weakfrail
Old
November 5, 2015 at 1:36 am
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...
November 5, 2015 at 1:30 am
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...
November 5, 2015 at 1:24 am
No you could still rebuild offline, just need to add
INDEX_REBUILD_OFFLINE
To the list of options
November 4, 2015 at 8:17 am
Online indexing is an Enterprise only feature, so all you will ever get on a Web box with them parameters is reorganization.
November 4, 2015 at 6:36 am
As long as the account in question has access to the share there shouldn't be no problems.
November 4, 2015 at 5:59 am
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...
November 4, 2015 at 5:32 am
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...
November 4, 2015 at 5:14 am
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...
November 4, 2015 at 5:00 am
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)
BaseOperations
Logistics
Inventory
Perpetual
Motion
Machine
Time
Paradox
Logical
Physical
structure
Base
Table
November 4, 2015 at 4:46 am
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...
November 4, 2015 at 4:45 am
Viewing 15 posts - 1,801 through 1,815 (of 6,395 total)