Viewing 15 posts - 2,506 through 2,520 (of 2,647 total)
Ok, can you post the results of sp_spaceused for this table? And... Are you setting updateusage = TRUE?
Thanks,
Jared
September 26, 2011 at 3:21 pm
Ok, and I assume that this is partitioned on month with the date field? (you mentioned a total of 12 file groups) Also, for my knowledge, where exactly are you...
September 26, 2011 at 3:13 pm
With tens of millions of rows... What is the data type for the column of your clustered index? Is it identity insert?
Thanks,
Jared
September 26, 2011 at 3:04 pm
Hehehe... Good luck! You'll get faster and more accurate help here 🙂
Jared
September 26, 2011 at 3:03 pm
Are these tables located on the PRIMARY partition? Also, what is the autogrowth set at for the file? Lastly, what recovery model? And, just for S&G... Collation?
Thanks,
Jared
September 26, 2011 at 2:47 pm
Just to clarify... The securables for dbo are missing on the production server?
Thanks,
Jared
September 26, 2011 at 2:26 pm
How were your databases put onto the dev machine? Were any of the system databases restored from production?
Thanks,
Jared
September 26, 2011 at 2:25 pm
Also take a look at this:
The main point of this article is that DENY will always override a GRANT...
Thanks,
Jared
September 26, 2011 at 1:20 pm
Try this link to see if it helps you:
http://www.techrepublic.com/blog/datacenter/reviewing-sql-server-permissions/466
Thanks,
Jared
September 26, 2011 at 1:11 pm
Open the Security -> Server Roles folder and double-click on public. The default is "Grant" for "Connect" on all securables. That is it (1 box checked for each securable)....
September 26, 2011 at 1:03 pm
george sibbald (9/26/2011)
And as perry said, 1 terrabyte log, wow!
And you...
September 26, 2011 at 11:55 am
What exactly is a "normal user?" Can you please provide exact permissions for the user he tried to set up? Don't forget there is a public server role and a...
September 26, 2011 at 11:23 am
Hi,
I'm not sure what you mean by "set up as dbo on msdb" as there are specific permissions associated with the user that need to be adjusted. My guess...
September 26, 2011 at 10:31 am
So I think part of this "take home message" from both of you is that the following:
CREATE TABLE #TEMP (id INT, fruit VARCHAR(20))
INSERT INTO #TEMP
SELECT 3 AS id,'apple' AS fruit
UNION...
September 26, 2011 at 9:35 am
Maybe a better way for me to phrase the question is this: "Is the ORDER BY clause ignored in the ORDER of the result set of a view and only...
September 26, 2011 at 9:24 am
Viewing 15 posts - 2,506 through 2,520 (of 2,647 total)