Viewing 15 posts - 496 through 510 (of 1,365 total)
Read about sp_delete_log_shipping_secondary at http://msdn.microsoft.com/en-us/library/aa933265(SQL.80).aspx
MJ
April 7, 2009 at 6:18 pm
Client tools/workstation components.
MJ
April 7, 2009 at 12:19 pm
Yes, it is possible as DBCC SHRINKFILE is logging database file page movement information in log file.
MJ
April 2, 2009 at 7:39 pm
The recommended default path in Windows 2000 and later is %SystemRoot%\Cluster. For example, C:\WinNT\Cluster\Cluster.log.
MJ
April 2, 2009 at 6:45 pm
April 2, 2009 at 6:05 pm
Please check sql server error logs and eent viwer logs for any error messages.
MJ
April 2, 2009 at 5:28 pm
SELECT a.* FROM OPENROWSET('SQLOLEDB',
'DRIVER={SQL Server};SERVER=.\yukon1;Trusted_Connection=yes;',
'select @@servername') AS a
MJ
April 1, 2009 at 4:35 pm
Try:
Create procedure USP_DelOldFiles @path varchar(25),@duration int
as
--Objective: To delete files older than certain period from a folder
--Usage example:
--Exec USP_DelOldFiles 'c:\test',30 -- which deletes files older than todaydate-30
--Created by :MAK
--Created date:...
April 1, 2009 at 4:34 pm
Execute the code mentioned below and paste the output here:
use DBName
go
sp_change_users_login 'report'
MJ
April 1, 2009 at 12:22 pm
Profile the statements(using profiler) executed by the application when it runs the update code and see what all gets executed apart from this(any other statement due to presence of triggers).
MJ
March 31, 2009 at 7:54 pm
If you are going with active/active cluster then need to run setup on both the nodes individually.
If active/passive then need to run setup on primary node only. Rest about...
March 31, 2009 at 6:12 pm
March 31, 2009 at 6:08 pm
select table_name,column_name from information_schema.columns
where column_name='ColumnNameHere'
MJ
March 31, 2009 at 5:57 pm
Grant ALTER SCHEMA on the schema(s) that the developers need to modify stored procedures in to the role. Add the developers to this newly created role.
MJ
March 31, 2009 at 4:14 pm
As suggested in error message try running DBCC CHECKDB on the database in question and see if it gives any errors.
MJ
March 31, 2009 at 4:07 pm
Viewing 15 posts - 496 through 510 (of 1,365 total)