Viewing 15 posts - 916 through 930 (of 1,065 total)
I think reinstalling the instance will create new MSDB database. So old SQL Server Agent jobs, alerts, SSIS packages, etc. will not be available.
October 21, 2008 at 1:53 am
"Help Favorites" feature is available.
October 21, 2008 at 1:05 am
I don't understand execution plans that much,
It is very important to understand execution plan.
To start with, visit http://msdn.microsoft.com/en-us/library/ms979196.aspx
October 20, 2008 at 11:13 pm
I think the password of SQL Server Agent service logon account has been changed.
October 20, 2008 at 3:23 am
I agree 100% with Jack Corbett
Grow your current position by getting your current employer to upgrade to SQL Server, even if it is Express edition from Access. Then you...
October 16, 2008 at 8:28 am
Change the recovery model to BULK_LOGGED just before reindexing.
After reindexing, revert to FULL.
October 16, 2008 at 8:17 am
Yes. Replication replicates schema changes as well.
October 8, 2008 at 5:53 am
Thanks Adrian for replying.
This issue has been resolved. It was happening due to difference in the UDDTs in the publisher and subscriber.
October 7, 2008 at 2:33 am
How many arguments are you passing when you run this stored procedure?
This stored procedures accepts only one arguments.
September 29, 2008 at 6:36 am
When i try to modify the table
How did you try to modify the table? Using GUI or ALTER TABLE command?
Try ALTER TABLE command.
Otherwise, temporarily remove this table from...
September 29, 2008 at 6:22 am
Create a scheduled job using SQL Server Agent.
September 29, 2008 at 6:15 am
Run the following query. It will generate the script you need. Change to "Result to Text" from "Result to grid" before you run it.
select 'sp_recompile ' + [name] +...
September 26, 2008 at 7:04 am
and for performance issue, I need to insert the latest daily data into a another table to perform search operations with better spped
Have you created any indexes to improve the...
September 24, 2008 at 7:13 am
Becuase the subject says
script needed - to lists all the tables without a clustered index - sql2k5/2k
September 23, 2008 at 3:25 am
select o.name from sys.indexes i
inner join sys.objects o
on o.object_id = i.object_id
where i.index_id = 0
September 23, 2008 at 3:01 am
Viewing 15 posts - 916 through 930 (of 1,065 total)