Viewing 15 posts - 211 through 225 (of 279 total)
http://msdn.microsoft.com/en-us/library/bb326290.aspx
yes, if sql is patched to sp1 cu8, but functionality limited to features SSRS supported in Sharepoint 2007.
November 11, 2011 at 1:57 am
DerbyNeal (11/10/2011)
I am running a SSRS program that selects data across 2 linked servers.
The process has to be completed in 2 stages otherwise I get a 'NT AUTHORITY\ANONYMOUS LOGON' message.
SSRS...
November 11, 2011 at 1:48 am
Extremely, extremely unlikely that you'd get a bad plan from a dirty read during a stat recalc. Remember that your million row table is going to get condensed...
November 11, 2011 at 12:53 am
Here is a query to return the row counts for every user table in the database:
select s.name schema_name,
t.name table_name,
...
November 10, 2011 at 10:34 pm
Perry Whittle (10/27/2011)
run NET SHARE on the passive node and check the output
And, if you see the share on the passive node, delete it. Cluster service creates it when...
October 27, 2011 at 2:25 am
You shouldn't see the share on the passive node if the cluster is configured correctly.
Did you create the share in cluster admin, or in windows explorer?
Do you have dependencies setup...
October 27, 2011 at 2:19 am
Can you post the query plans from before and after creating/dropping the index?
This does sound like statistics...
Also try updating stats on the table before creating the...
October 27, 2011 at 2:01 am
Knowledge Hunter (10/24/2011)
We have a fact table containing 28489211 rows and 18997272 KB.
We have created a few non clustered indexes based on the queries those are regularly used.
But there...
October 25, 2011 at 3:22 pm
I wasn't involved in that decision, but my guess is the size. I believe our corporate full backups are 10-15 TB.
October 25, 2011 at 2:43 pm
(duplicate post)
October 25, 2011 at 2:20 pm
LearningSSAS (10/25/2011)
October 25, 2011 at 2:20 pm
dajonx (10/24/2011)
After reading your response, I do have to agree with you that SAN to SAN replication is outside of the backup and restore...
October 24, 2011 at 9:50 pm
LearningSSAS (10/24/2011)
SELECT COUNT (DISTINCT ORDERNUMBERUNIQUE) AS COUNT
FROM FACTTABLE1
WHERE NOCHARGEAMOUNT > 0 AND NOCHARGEAMOUNT IS NOT NULL
My plan is...
October 24, 2011 at 8:31 pm
Here's a script to identify the effected indexes and estimate how many MB would be moved by a shrinkfile operation. It can help you identify non-clustered indexes that could...
October 24, 2011 at 4:15 pm
Viewing 15 posts - 211 through 225 (of 279 total)