Viewing 15 posts - 646 through 660 (of 1,222 total)
I would disable the indexes instead of scripting/dropping them. This has pretty much the same affect as scripting/dropping but, I think, is a lot simpler to manage.
Have a...
January 26, 2010 at 8:06 pm
FK's should not be a problem for applications that read data (Analysis Services only reads data for most of its activities). Indexes on the FK columns on your fact...
January 24, 2010 at 8:43 pm
Try the following
SELECT { [Measures].[Satis Miktari] } ON Columns,
{STRTOSET('[Dim Time].[Week Of Year].&[@MyWeekParamater]') ,
STRTOSET('[Dim Time].[Week Of Year].&[@MyWeekParamater].PrevMember')}
*
{[Dim Stores].[Store Name].allmembers } on rows
FROM
[HCRetailSales]
January 22, 2010 at 9:50 pm
Analysis Services had some big changes done to it between SQL 2000 and SQL 2005. From 2005 to 2008 there were more changes but not so major.
There is a...
January 21, 2010 at 8:39 pm
You could create a sproc that starts the job - specify 'EXECUTE AS' in the definition of the sproc so that it runs as a user who is allowed to...
January 20, 2010 at 8:06 pm
Firstly, Reporting Services wants to have measures on columns and all other information required to be shown on the report needs to be rows. This is part of the...
January 19, 2010 at 8:10 pm
You could write a stored proc to delete the data, add the stored procedure to the publication with the option set to replicate the execute of the stored procedure. ...
January 19, 2010 at 2:03 am
Been a while for me also but I think you will need to add an alias to EACH of the client machines using the Client Network Utility (should be in...
January 14, 2010 at 8:22 pm
Replication will be quite happy with 100k rows. Depending on network speed etc it might take a while.
January 12, 2010 at 8:24 pm
Yes you should be reorg-ing indexes periodically. Replication agents INSERT, UPDATE and DELETE data as required just like any other database and, hence, the table issues with fragmentation will...
January 11, 2010 at 8:30 pm
For transaction replication with updateable subscriptions, your table must have a primary key
The tables will also need a uniqueidentifier column called "msrepl_tran_version" on each table. It may be the...
December 23, 2009 at 2:40 am
Ivanna Noh (12/21/2009)
...the bridge has got 6 manual adjust winders...
Those little fine tuning screws at the bridge are great - so easy to get a perfect tuning that way (assuming...
December 22, 2009 at 3:10 am
These are warnings being issues because you have not changed the default data type for each of the fields on your input file. If you know the correct sizes...
December 21, 2009 at 7:44 pm
I would not use Merge Replication for the scenario you are describing because there is a very real chance that the same ticket can be sold since merge replication does...
December 21, 2009 at 7:42 pm
One factor for me was the neck width. I have large hands and too often I would find that I would be fretting one string and touching an adjacent...
December 18, 2009 at 4:00 am
Viewing 15 posts - 646 through 660 (of 1,222 total)