Viewing 14 posts - 16 through 29 (of 29 total)
Bit of a cheat...
SELECT CASE WHEN a < 0 THEN 0 ELSE a END AS aResult
FROM ( SELECT CEILING((@aCount-@aFrom+0.0001)/@aRatio) a ) #t
April 17, 2009 at 2:54 am
use SQLCmd.exe
http://msdn.microsoft.com/en-us/library/ms162773(SQL.90).aspx
April 17, 2009 at 2:44 am
Check the executionlog table to determine if the time is spent on data retrieval or processing or rendering. If your resultset is very large, eventhough the query results may be...
April 17, 2009 at 2:40 am
Step 1:
Open your SSAS project in IDE and build it. It will generate the following files in bin folder
- YourDB.asdatabase
- YourDB.configsettings
- YourDB.deploymentoptions
- YourDB.deploymenttargets
Step 2:
Run the Analysis Services deployment wizard,...
April 8, 2009 at 4:30 am
After you create a SSAS project and build it using BIDS, you will get the list of the files that you have mentioned. Then use Analysis Services deployment (wizard or...
April 7, 2009 at 9:55 am
Check out Analysis Services deployment wizard in BOL : http://msdn.microsoft.com/en-us/library/ms176121.aspx.
I also use ASCMD in a batch file to release the XMLA scripts into prod environment.
April 7, 2009 at 6:57 am
where
d.contactid in (select * from saleslogix.london_remote.sysdba.contact
Change the above to
where
d.contactid in (select ContactID from saleslogix.london_remote.sysdba.contact
Cheers,
Arun
April 7, 2009 at 4:43 am
Is your SSRS service and the SQL Server Database Engine (where Report Server DB resides) installed in different machines ? If so, I think you have not configured Kerberos. Check...
April 6, 2009 at 7:24 am
Follow the below method to read the file using SP
http://www.java2s.com/Code/SQLServer/Insert-Delete-Update/InsertingImages.htm
(use single quotes instead of double quotes as mentioned in the sample. You can insert this to a...
April 3, 2009 at 9:50 am
The estimate done by SSAS 2005 is not accurate in some scenarios. The processing may not require the same amount of memory as estimated. In which case, try setting SSAS...
April 2, 2009 at 3:19 am
Haven't gone through the whole post.
Couple of things
-Use UNION ALL instead of UNION
- Try to remove NOT IN using temp table and left outer join.
January 28, 2008 at 9:16 am
Its better to check the usual stuff: Disk access counters by msmdrv using Perfmon - this may give you some idea. Also, make sure AV real-time protection is turned of...
November 16, 2007 at 4:37 am
It is worth checking the design of the dimension. Does it have any user defined hierarchy? For 18 M records with just 2 attributes, it should not take this long.
What...
November 15, 2007 at 3:20 am
I use CLR to access SSAS. When data changes in data warehouse, the cube has to be processed immediatly based on the changes and I have found that using CLR...
October 15, 2007 at 4:44 am
Viewing 14 posts - 16 through 29 (of 29 total)