Viewing 15 posts - 226 through 240 (of 501 total)
The 4GB limit is only for Express, Web, and Workgroup editions. Standard and Enterprise editions are only limited by the operating system maximum.
September 28, 2010 at 5:01 pm
You might try using the URL in the server name when connecting via SSMS.
http://<SERVERNAME>/reportserver
If I remember correctly this had to be done to work around an issue with...
September 28, 2010 at 3:50 pm
DBCC DBREINDEX and DBCC INDEXDEFRAG cannot be used on system tables.
http://msdn.microsoft.com/en-us/library/aa258828(SQL.80).aspx
http://msdn.microsoft.com/en-us/library/aa258286(SQL.80).aspx
September 23, 2010 at 2:53 pm
NO_LOG and TRUNCATE_ONLY options have been removed in 2008. You can switch the recovery model from FULL to SIMPLE to achieve the same thing.
http://msdn.microsoft.com/en-us/library/ms186865(v=SQL.100).aspx
The BACKUP LOG WITH NO_LOG and WITH...
September 20, 2010 at 4:09 pm
Put the package name in quotation marks.
dtutil /SQL "Import BTXMASr8 Table" /DELETE
September 17, 2010 at 3:47 pm
If the database fills the primary data files to the max file size you have set for them, the following error message will be written in the SQL log and...
September 17, 2010 at 3:35 pm
Use SQLCMD in a job step on the local server using the operating system type for the step.
SQLCMD -E -S REMOTESERVER -Q "msdb..sp_start_job 'RemoteJob'"
September 16, 2010 at 4:31 pm
Something like sp_helplogins?
September 16, 2010 at 3:26 pm
See DBCC SHRINKFILE
http://technet.microsoft.com/en-us/library/ms189493.aspx
Shrinking data files will cause index fragmentation and you will need to rebuild your indexes after the shrink.
September 15, 2010 at 4:41 pm
You could restore the backup to the same system with a different name or to a different system. Either will work. Then use the Import and Export wizard to copy...
September 15, 2010 at 4:34 pm
You cannot restore a single table from a native SQL 2008 R2 backup. However, you can restore the entire database with a different name and then export the table and...
September 15, 2010 at 4:15 pm
Right click the db, Tasks, Generate Scripts.
You can script the stored procedures from here with many options.
September 13, 2010 at 4:09 pm
Derrick Smith (8/27/2010)
Compression saves you a TON of disk space, and you can compare cost savings there for backups on your SAN, tapes, etc.
I agree. We just finished a migration...
August 27, 2010 at 5:20 pm
You need to use the cluster network name which can move from one node in the cluster to another. If you have Server1 and Server2 clustered there would be a...
August 27, 2010 at 4:19 pm
From BOL:
Permissions
--------------------------------------------------------------------------------
Requires VIEW SERVER STATE permission on the server to see all executing sessions on the instance of SQL Server. Otherwise, the user sees only the current session.
August 27, 2010 at 4:01 pm
Viewing 15 posts - 226 through 240 (of 501 total)