Viewing 15 posts - 1,156 through 1,170 (of 1,291 total)
The Steps mentioned looks to be fine, But the question about adding another Instance on a Production Server needs some clarity, You must be aware that the Performance would be...
November 3, 2009 at 2:07 pm
Then If I am in your position, I would create a Cursor that iterates through all the Tables in that Database and run this Command,
DENY UPDATE ON [dbo].[TableName]...
November 3, 2009 at 2:00 pm
USE [DatabaseName]
GO
EXEC sp_addrolemember N'db_denydatawriter', N'UserName'
GO
Should Work
November 3, 2009 at 1:38 pm
You should be looking at the DMV sys.dm_db_index_usage_stats
http://msdn.microsoft.com/en-us/library/ms188755(SQL.90).aspx
If Your Database Compatability Level is set to 90, then you can use the Reports available in the SSMS.
Select the Database in The...
November 3, 2009 at 1:33 pm
I'm really just looking for a reliable set-up method when deploying SSIS packages to SQL server and running them from SSAS in SQL 2005. .
Again Confusing...
You would not be...
November 3, 2009 at 1:23 pm
I hate to say this nth time over the past week, Post the DDL Scripts for your tables and some insert scripts that helps us to setup the same data...
November 3, 2009 at 1:10 pm
Please follow this Link http://www.databasejournal.com/features/mssql/article.php/3771296/Setting-up-a-Two-node-SQL-Server-2008-Cluster-from-the-Command-Prompt---Preparation.htm
November 3, 2009 at 12:42 pm
Had the same problem in the past but did not worry going backwards since SSMS is more easy to use, any way I would keep an eye on...
November 3, 2009 at 12:36 pm
I am unable to understand by this
SSIS packages being run from SSAS
From my knowledge, SSIS Package can run an SSAS Process but I have not come across...
November 3, 2009 at 12:29 pm
Why would you need the Column Analyse in the Temp table when you don't need it?
Can't the below code work?
SELECT IForf.Bundle, IAM.Material
...
November 3, 2009 at 11:12 am
You should have moved the Files to new locations and that was the reason Gail or I was repeating what / How did you perform....
November 3, 2009 at 10:04 am
mr_adeelalisyed (11/3/2009)
SSCrazy Elights I apologize for not providing the full information.Grasshopper thanks for you input and yes I understand my mistake.
Hey, Those are not their Profile Names, they are...
November 3, 2009 at 10:00 am
That's true Lynn, I have not seen any clarification from the Poster what they are seeking and we sit in the middle to decide what's best for them without knowing...
November 3, 2009 at 9:16 am
Clive Strong (11/3/2009)
Bru Medishetty (11/2/2009)
Krasavita (11/2/2009)
What should I do? how can I clean it?
You need to Shrink the Database.
Use DBCC SHRINKDATABASE or the Individual Data Files, using DBCC SHRINKFILE
Rather Use...
November 3, 2009 at 8:46 am
Viewing 15 posts - 1,156 through 1,170 (of 1,291 total)