Viewing 15 posts - 991 through 1,005 (of 1,156 total)
SQL Server Express does not have the Agent service or notification services. You basically get the database engine.
December 17, 2007 at 2:21 pm
I pulled these scripts from the Microsoft 70-431 training kit:
This script allows you to view the fragmentation
DECLARE @dbname VARCHAR(20)
SET @dbname = 'AdventureWorks'
SELECT object_name(dt.object_id),si.name,
dt.avg_fragmentation_in_percent, dt.avg_page_space_used_in_percent
FROM
(SELECT object_id, index_id, avg_fragmentation_in_percent, avg_page_space_used_in_percent
FROM sys.dm_db_index_physical_stats...
December 17, 2007 at 12:29 pm
Rebuild your index according to how much the are fragmented. You can do this by using the new dynamic management views to determine what level they are fragmented. ...
December 17, 2007 at 12:25 pm
Phillip,
1.
Rebuilding/reorganizing indexs everday is not usually required. Index rebuilding really is really benificial when the database has moderate to heavy fragmentation. When you rebuild the indexes there is...
December 17, 2007 at 11:57 am
Is SQL 2000 installed on server2? This message occurs when a 2005 database is restored to a SQL 2000 instance. You may be logging into a 2000...
December 15, 2007 at 11:27 pm
Right click on the table --> script as --> create to --> file
This creates the table with the keys and indexs etc.
Right click on the database --> tasks --> export...
December 15, 2007 at 8:14 pm
Yes, you have everything correct. I would backup everything in the sharepoint instance, just to be safe. You can at this point restore everything back to the way...
December 15, 2007 at 11:30 am
This should do the trick.
select *
from @tb e
where e.date_e = (select max(date_e) from @tb a where e.id = a.id)
order by e.id
December 15, 2007 at 10:05 am
Sharepoint does not require embeded version. If you want to install sharepoint on standard version of sql 2005, you have to backup the sharepoint database, uninstall everything, reinstall SQL...
December 15, 2007 at 9:29 am
You cant connect to the embeded version in a traditional way because the way it functions. Try connecting to the instance using the named pipe, as the server...
December 14, 2007 at 6:55 pm
You cant connect to embeded editon via SSMS. There is no other instance on the server. So you will have to install an instance of SQL server. This...
December 14, 2007 at 3:57 pm
yeah right click on the database --> tasks --> import data. you are correct this will execute as a ssis package, but it does show problem columns. Once...
December 14, 2007 at 1:26 pm
Yeah the default is 1433. You did say the browser service was running, right? Is this a default instance? If yes, the instance name is MSSQLSERVER. ...
December 14, 2007 at 1:22 pm
This is definetly the problem. query the msdb..BACKUPSET folder and see the last place the file was backup.
Then see if you can get to it. You may have...
December 14, 2007 at 1:15 pm
You have a few options here:
1: you can create a SSIS package that dumps all bad data into a file then you can fix the data
2. import the data via...
December 14, 2007 at 11:35 am
Viewing 15 posts - 991 through 1,005 (of 1,156 total)