Viewing 15 posts - 1 through 15 (of 59 total)
Nancy,
Were you able to figure out how to refresh the cube metadata from within Excel so new dimensions/attributes/measures show, without having to recreate the Excel files? I have the...
April 5, 2014 at 7:00 pm
Put brackets around it like this:
ALTER DATABASE Claims
ADD FILE
( NAME = Claims_dat2,
FILENAME = 'C:\Program Files\Microsoft SQL Server\MSSQL$SQLSERVER2000\Data\Claims2.mdf',
SIZE = 5GB,
MAXSIZE = 10GB,
FILEGROWTH = 1 GB)
TO FILEGROUP
January 31, 2005 at 11:24 am
The problem is with your file system, the maximum file size on a FAT32 formatted partition is 4GB.
Check this out: http://www.experts-exchange.com/Operating_Systems/MSDOS/Q_20343072.html
My suggestion is to add additional files (less than 4GB...
January 28, 2005 at 9:39 am
Sheba,
What OS are you running and what file system is your local drive, NTFS or FAT32?
Jarret
January 28, 2005 at 6:36 am
This may solve what you are trying to do. Set up 2 datasets, one as you would normally for a report, and another that will get your department value (I...
January 26, 2005 at 12:05 pm
This page has a pretty good explantion:
http://www.datamodel.org/NormalizationRules.html
Hope this helps.
Jarret
January 26, 2005 at 7:36 am
It won't print correctly if you output to grids, which is why I mentioned it. If your string spans multiple lines (like the case with my code), when displaying the results...
January 25, 2005 at 10:40 am
I doubt I would go as far as using a temp table and a cursor for this. You can do the same without either.
If you send your results to text or...
January 25, 2005 at 9:58 am
Thanks for your response Phill.
I've found one difference (so far) between the two setups. I setup a new subscription for the report and in the 'Subscription Processing Options' section, I...
January 11, 2005 at 11:17 am
This will list the table and extended property for any table with the word 'lookup' in the extended property.
select o.name as Table_name,
p.value as Extended_Property
from sysobjects o
inner join sysproperties p on o.id...
December 27, 2004 at 8:19 am
Tim,
Yes there is a way. In Query Analyzer, select Options from the Tools menu. In the 'Connection Properties' tab, you will see a 'Set implicit_transactions' checkbox. If you check this...
November 11, 2004 at 6:22 am
You could use the RPC:Completed and SQL:BatchCompleted events, the RPC:Completed event will give you the values for the parameters. Your trace is growing rapidly because you are capturing every statement...
October 28, 2004 at 7:36 am
The correct answer is absolutely correct and all of you who are upset, if you would read this topic, you will see why. The only thing that is wrong is...
October 21, 2004 at 2:24 pm
I agree with Stephen Bailey, it's just used as an alias and only works under certain conditions.
You can see this if you give Tab_A an alias, you will get a...
October 21, 2004 at 6:14 am
I tried this example and got the expected results.
First example, as it was shown in the question, a 2 resulted. Second test, I swapped the entry of the 1 &...
September 20, 2004 at 6:37 am
Viewing 15 posts - 1 through 15 (of 59 total)