Viewing 15 posts - 316 through 330 (of 392 total)
If you're referring to Database Diagram in SQL Management Studio, and you've right clicked to View Page Breaks, that is about as good as it gets for print preview. ...
January 23, 2013 at 2:05 am
It should be fairly straightforward. Make sure you're licenced for the extra running hardware.
Brent Ozar has a screenshotted install
http://www.sysads.co.uk/2012/02/add-additonal-sql-instance-to-existing-sql-server-2008-r2-cluster/
Also, you need to install the 2nd instance from...
January 23, 2013 at 1:40 am
Isn't the definition of an active/active cluster one that runs a separate instance on each node, each with their own resource groups?
So you are wanting to go from...
January 23, 2013 at 1:18 am
I believe you can just set the caching timeout and it should work. http://prologika.com/CS/blogs/blog/archive/2009/11/16/shared-datasets.aspx
Or you could you use a temp table and base it on that, instead of having...
January 16, 2013 at 1:35 am
Enabling "optimize for ad hoc workloads" is a no brainer, read about it, then turn it on. It will reduce plan cache bloat for single use plans. If...
January 16, 2013 at 1:15 am
It wasn't the statistics that fixed the issue, it was the query plan being invalidated and recompiled (ie. new plan).
From BOL:
http://msdn.microsoft.com/en-us/library/ms187348%28v=sql.105%29.aspx
Updating statistics ensures that queries compile with up-to-date statistics. However,...
January 16, 2013 at 12:39 am
I'm interested to see if changing those values fixes your issues.
The connect item is old, but the Microsoft comment about readbatchsize being fixed in next release was on Feb...
January 3, 2013 at 6:36 pm
Reduce your readbatchsize, it's too high which is why you're seeing the message:
I've read that changing Readbatchthreshold can cause very slow performance in 2008
January 2, 2013 at 11:59 pm
The user will be able to run the queries, but they will get 0 results unless you specifically grant them access to the specified table.
eg. SELECT * FROM sys.tables
...
January 1, 2013 at 11:43 pm
There was a great introduction to data mining by Russ Blake at au teched 2012. The slides are here: http://channel9.msdn.com/Events/TechEd/Australia/2012/DBI226%5B/URL%5D
Data mining for fun and for profit
October 30, 2012 at 5:11 am
The more common name is sql2008r2. Either that or he's confusing SharePoint and SQL.
October 30, 2012 at 4:48 am
Works fine here. You must have a DENY permission set somewhere.
CREATE SCHEMA [Dave]
GO
CREATE USER [Joe] WITHOUT LOGIN
GO
CREATE TABLE [Dave].[Test1] (Col1 INT, Col2 INT, Col3 INT)
GO
INSERT INTO Dave.Test1
VALUES (1,1,1),(2,2,3),(3,2,4)
GO
CREATE VIEW...
October 29, 2012 at 10:02 pm
The answer is wrong. It's been submitted as a "serious technical mistake":
http://oreilly.com/catalog/errataunconfirmed.csp?isbn=0790145345134
October 29, 2012 at 8:58 pm
You can create a unique non clustered index on (VENDORID+ADDRESS+CITY) since your primary key is already specified. You can specify a unique key constraint when creating the table also.
October 15, 2012 at 10:20 am
Oh I see, OK, I don't think 1 is correct, with {day} there you'll have non unique week site keys, or am I jumping past 1nf..
IMO, I think...
October 15, 2012 at 9:40 am
Viewing 15 posts - 316 through 330 (of 392 total)