Viewing 15 posts - 76 through 90 (of 545 total)
New_to_being_DBA (6/25/2009)
June 25, 2009 at 8:44 am
try this:
goto Job properties, check the owner and change it to SA or use a windows account with higher priviliges.
Also can you let us know the following:
start services in Start-->Control...
June 25, 2009 at 8:19 am
Thanks for the detailed info it helps:
as i said before uninstall SSAS 2005 as in the link i provided, then run the setup for 2008 again and choose only SSAS...
June 25, 2009 at 8:07 am
Ian must be right, bus as far as i can remeber hazily.. this parameter writes dump files in case of error...
June 25, 2009 at 8:04 am
😀 We must be the long lost brothers 😀
June 25, 2009 at 7:24 am
There is Service pack 3 Available for SQL server 2005. how about upgrading to SP3 directly.
Sp1 had some Memory leak issues still pending and were solved in SP2, but SP3...
June 25, 2009 at 7:15 am
sqldba725 (6/25/2009)
any one has any idea , how we can uninstall SQL analysis services only ...wihtouy impacting anything else ...
Or how to upgarde analysis SP from 9.00.3042.00 to...
June 25, 2009 at 7:08 am
Sudiendra (6/24/2009)
June 25, 2009 at 7:03 am
Sudiendra (6/24/2009)
June 24, 2009 at 8:40 pm
SQL 2000 use this:
DECLARE @Handle binary(20)
SELECT @Handle = sql_handle FROM sysprocesses WHERE spid = (paste the spid here)
SELECT * FROM ::fn_get_sql(@Handle)
SQl 2005
select ss.text,sp.*
from master..sysprocesses sp
cross apply sys.dm_exec_sql_text (sp.sql_handle)...
June 24, 2009 at 2:48 pm
connect to integration services insted of database engine and then list the packages in the left side obect explorer... right click on package and delete....
or using DTUTIL
DTUTIL /SQL (PACKAGENAME) /DELETE...
June 24, 2009 at 2:38 pm
Answer: check database integrity task:
but here is how you should form the maintenance plan:
BAckup Database Task:
Maintenance Cleanup
history cleanup
if required seprate out the integrity checks and index rebuild tasks in another...
June 24, 2009 at 10:08 am
No it is not possible to create duplicated .mdf files or .ndf files or same name mdf and ndf files even across filegroups.
if you are using 2 diff servers.. yes...
June 24, 2009 at 10:03 am
if you have admin right on SQL Server: Write
DBCC USEROPTIONS and check to see the last option, what does it say.
I bet what is happening is the SQL server might...
June 24, 2009 at 9:57 am
Viewing 15 posts - 76 through 90 (of 545 total)