Viewing 15 posts - 376 through 390 (of 440 total)
Hmm, seems like I've misunderstood the caching:
A cached report is invalidated in response to the following events: the report definition is modified, report parameters are modified, data source...
October 12, 2011 at 1:57 pm
As far as I can see, this is OK with the licensing agreement, and Developer edition has the same engine as Enterprise Edition (ie all features available).
October 12, 2011 at 3:05 am
I have not seen a generic script, but you could use DBCC CHECKIDENT and Creating and Modifying Identifier Columns to achieve this.
October 12, 2011 at 1:36 am
October 12, 2011 at 1:21 am
To be honest, I don't know if this is the issue, and I have not even tried to recreate the issue.
To me, it seems that the Service Account does not...
October 12, 2011 at 12:29 am
I do get the same error message, yes:
Msg 3723, Level 16, State 6, Line 2
An explicit DROP INDEX is not allowed on index 't1.ix_t1'. It is being used for FOREIGN...
October 11, 2011 at 6:14 am
First of all, I am very happy with being a database developer, not a software engineer. The difference to me, is that I have a strict focus on the databases,...
October 11, 2011 at 5:06 am
Thanks for your response. I wish it was that simple. Attached is my settings for caching.
October 11, 2011 at 2:43 am
This does indeed happen on both SQL Server 2008 R2 (RTM) and SQL Server 2008 SP2:
use tempdb;
go
create table t1 (
id int identity primary key,
val varchar(10)
);
create table...
October 11, 2011 at 2:31 am
Ok, I understand that I made myself misunderstood. Of course you can use a staging table, subqueries, common table expressions and so forth to insert the rows not conflicting with...
October 3, 2011 at 9:54 am
I am not trying to be rude, but if that is the behaviour you want, you should have a look at MySQL. SQL Server is by nature ACID compliant, meaning...
October 3, 2011 at 5:34 am
Thanks a lot, that was exactly what I needed.
October 3, 2011 at 4:51 am
It is really all about coust versus benefit. If you need two instances, an so-called active/passive cluster would require 3 nodes. As such, you need enterprise edition of SQL Server,...
October 3, 2011 at 3:10 am
Viewing 15 posts - 376 through 390 (of 440 total)