Viewing 15 posts - 136 through 150 (of 244 total)
Hi Steve,
Have you had any luck with that example project.
It would really help me out if you wouldnt mind sending it.
Thanks a lot for your help,
Jules
August 14, 2006 at 4:46 am
is there a way of listing the available switches for an .exe in dos?
the other switches like /qb are not valid either?? i tried doing it with a .ini file...
August 11, 2006 at 8:43 am
yes set up begins when /seeting and path is omitted. Which setup program is it i has msdns developer edition
August 11, 2006 at 8:41 am
Steve,
thanks alot for this
have a look at the reporting services forumn if you have a chance
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=150&messageid=299248
Any help greatly appreciated,
Jules
August 11, 2006 at 7:40 am
start /wait "F:\ENGLISH\SQL2005\DEVELOPER\SQL Server x86\Servers\setup.exe" /settings "C:\Documents and Settings\Administrator\Desktop\SQLInstall.INI" /qn
when i run the batch in a cmd window "/settings" is an invalid sqitch comes up.
F is the DVD drive.
Any...
August 11, 2006 at 5:56 am
="WITH MEMBER [Measures].[ParameterCaption] AS '[Broker Contact].[Full Name].CURRENTMEMBER.MEMBER_CAPTION' MEMBER [Measures].[ParameterValue] AS '[Broker Contact].[Full Name].CURRENTMEMBER.UNIQUENAME' MEMBER [Measures].[ParameterLevel] AS '[Broker Contact].[Full Name].CURRENTMEMBER.LEVEL.ORDINAL' SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue], [Measures].[ParameterLevel]} ON COLUMNS , [Broker Contact].[Full Name].ALLMEMBERS ON...
August 8, 2006 at 8:20 am
Thanks very much for this it seems to compile this code ok but cant run it.
After i select the first parameter( which then would filter the available values for the...
August 8, 2006 at 5:25 am
Thanks very much for this the it seems and to compile this code but cant run it.
After i select the first parameter( which then whould filter the available valuse for...
August 8, 2006 at 5:24 am
Thanks very much for your help but i am very new to MDX so am not quite there yet.
when i add the = sign at the beginning of the...
August 7, 2006 at 3:48 am
you need to get an idea of how many different hold types there and then use a cross tab structure. Something like
max(case when hold = 'credit' then hold else ''...
August 3, 2006 at 3:23 am
in case anyone is interested i solved this by using the sql2005 rank() function
create view testview
as
select
thing, type,
rank() over (partition by thing order by thing, type)as Ranking
from test
July 27, 2006 at 8:37 am
Nope shouldnt need to.
Replication should really be DBA responsibilty as its her who wil get it in the neck if the data is missing currupt etc.
July 26, 2006 at 3:58 am
This kind of denormalisatin is a bad idea. You should calulate it 'on-demand' rather than storing the value in your DB.
If you must store this as a column you...
July 25, 2006 at 3:21 am
whats wrong with it?
Does it error or update the data incorrectly?
Please post an example.
July 24, 2006 at 5:20 am
Viewing 15 posts - 136 through 150 (of 244 total)