Viewing 13 posts - 1 through 13 (of 13 total)
You may use this query to shrink data file.
declare @src bigint,@sql varchar(250),@filename varchar(25),@shrink bigint
set @filename='BEL_CDR'--change your data file name
select @shrink = size/128.0 from sysfiles(nolock) where name...
January 7, 2019 at 4:10 am
when I restore the next T-Log file it starts restoring rest of the files. It happens every day on different timings 🙁
July 5, 2016 at 12:27 pm
Size of T-logs that was skipped was not more than 250 MB.
July 5, 2016 at 11:58 am
Finally used sys.server_sql_modules to get the script of the triggers created.
August 16, 2013 at 6:51 am
Am using the below query to get the script of that trigger. But am unable to get the script of the trigger.
SELECT M.Definition as CreateScript
FROM sys.sql_modules as M INNER...
August 16, 2013 at 5:28 am
Thanks a lot Lowell... We found the name of the trigger with the view given by Lowell...
August 16, 2013 at 5:06 am
if am adding a new login am getting the below error:
"ad hoc updates to system catalogs are not allowed"
August 7, 2013 at 2:03 am
We have already created linked server now we cannot re-create the linked server. Is there any other possibilities to restrict linked server access for particular login alone.
August 2, 2013 at 10:11 am
That particular user should not fetch any data through linked server.
August 2, 2013 at 7:58 am
Viewing 13 posts - 1 through 13 (of 13 total)