Viewing 13 posts - 241 through 253 (of 253 total)
SELECT OBJECT_NAME(object_id) AS TableName ,
name AS IndexName ,
type_desc AS IndexType ,
CASE WHEN is_unique = '1' THEN 'UNIQUE'
...
November 2, 2015 at 10:08 pm
This worked for me
CAST(Tbl.date as DATETIME) + CAST(Tbl.TimeFrom AS TIME)
I have tested this in SQL Server 2008.
November 2, 2015 at 10:04 pm
Msg 4902, Level 16, State 1, Line 3
Cannot find the object "disaster_management_DEV.dbo.TWITTER_T" because it does not exist or you do not have permissions.
Fix the statement to read like this:
ALTER TABLE...
November 2, 2015 at 9:53 pm
Run this to see all your history... and no UI necessary 🙂
get-eventlog System | where-object {$_.EventID -eq "6005"} | sort -desc TimeGenerated
November 1, 2015 at 10:02 pm
This article defines many options to speed up the backup, maybe it will help
http://henkvandervalk.com/how-to-increase-sql-database-full-backup-speed-using-compression-and-solid-state-disks
November 1, 2015 at 9:40 pm
You may use [File is a Directory] instead of [File Exist] to check if the UNC path is folder, not file.
If object_ID(N'tempdb.dbo.#File_Results') is not NULL
Drop table...
November 1, 2015 at 9:26 pm
EXEC [msdb].[dbo].[sp_send_dbmail]
@profile_name = 'DBA TEAM',
@subject = 'DBCC Results',
@recipients = 'lmacdonald@mywebgrocer.com',
...
October 30, 2015 at 10:52 pm
Have you checked the box to compress the backup? There is lots of air in many databases.
October 28, 2015 at 11:45 pm
Justin Manning SA (10/13/2015)
-- The following resulted in the following error message:
DBCC CHECKDB (ObfuscatedName);
/*
Msg 945, Level 14, State 2, Line 18
Database 'ObfuscatedName' cannot be opened due to inaccessible files...
October 28, 2015 at 12:00 am
Hope this will help you out: http://blogs.msdn.com/b/sqlcat/archive/2015/07/08/sql-2014-clustered-columnstore-index-rebuild-and-maintenance-considerations.aspx
October 27, 2015 at 11:36 pm
SQL Sentry & Dell both are great monitoring with user-friendly interface
October 27, 2015 at 2:11 am
The error occurs due to following reasons: -
[font="Times New Roman"]The OLEDB provider is not yet installed.
The OLEDB provider is not registered.
[/font]
Review the list of linked servers defined on the...
October 27, 2015 at 1:39 am
Double-click the MSI to start installation.
In the Open file dialog box, click Run to start the Installation Wizard.
Follow the wizard to complete the installation
October 27, 2015 at 1:27 am
Viewing 13 posts - 241 through 253 (of 253 total)