Viewing 15 posts - 1,081 through 1,095 (of 1,226 total)
What RAID type are you using? Maybe a hardware based 0+1 is needed. This is recommended for mission critical 24/7 systems.
April 24, 2013 at 12:11 pm
Rather than maintain two copies of the same file, Import then move the file all in one loop.
April 24, 2013 at 12:04 pm
I think SSAS does the proper thing by wanting to have all fields defined. In your dimensional database, It is common to put a -1 key to represent a null...
April 24, 2013 at 11:50 am
Snapshot replication is usually a good option if you generally have lots of activity happening on a large database. I would not recommend snapshot replication since this would replace the...
April 18, 2013 at 10:58 am
One issue with stored procedures in reporting services is that if the stored procedure is quite complex, e.g. has multiple select statements, that SSRS has trouble parsing them correctly to...
April 18, 2013 at 10:50 am
Try this also...
With Member [Measures].[Thing Count YTD] As
AGGREGATE(YTD([Effective Date].[Year-Week].CurrentMember)
, [Measures].[Thing Count] )
SELECT
[Measures].[Thing Count YTD] ON 0,
[Effective Date].[Year-Week].[Week].[2013 Week 6] ON 1
FROM
[Cube]
This keeps whatever it is you are...
April 18, 2013 at 10:42 am
It's good if you still have friends there that can give you a reference. So don't burn your bridges completely.
🙂
April 18, 2013 at 10:30 am
Sorry to hear this. I won't ask for details.
Cheers
April 17, 2013 at 11:41 am
INFORMATION_SCHEMA columns do not have exactly the same information as sys.columns, but it may work depending on the need. Overall, sql server 2000 just does not have all of the...
April 17, 2013 at 10:58 am
Maybe the clustered index that re-arranged the pages created disk fragmentation?
April 17, 2013 at 10:49 am
Also be sure your column emp_status does not contain nulls or else a
emp_status !='01'
will not return the nulled columns. I don't know if this is the intended behavior.
April 17, 2013 at 10:45 am
So you deleted a local user account? Be careful this does not cause issues in other areas.
April 17, 2013 at 10:32 am
Hi,
the total of contracts started in that year, having status different than '101', divided by the total of contracts ended in the previous year
Look into the function "ParallelPeriod" in...
April 11, 2013 at 5:11 pm
The US post office has a NCOA (national change of address) service. They in the process maintain a standardized version of US addresses. There are companies that buy/rent this data...
April 11, 2013 at 4:56 pm
Model your business processes, that will light what are your facts and subsequently your dimensions. If you are familiar with your business this shouldn't trouble you too much.
April 11, 2013 at 4:48 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,226 total)