Viewing 15 posts - 1,051 through 1,065 (of 1,365 total)
Have you checked the default log file location where these files get created? Also, run select * from sys.traces and see under the path dispalyed in output of above query(path...
October 6, 2008 at 2:10 pm
Make use of the following function:
IF IS_SRVROLEMEMBER ('sysadmin','loginname') = 1
print 'User''s login is a member of the sysadmin role'
else
print 'User''s login is not a...
October 3, 2008 at 3:57 pm
Try scheduling job at some other time. Do one thing capture ping IP address results at the time when the ftp job executes so as to check whether there is...
October 3, 2008 at 3:49 pm
Thanks guys, keep your views and points coming in. I also found one good link for information on licensing in Virtual envt.
http://www.microsoft.com/sql/howtobuy/virtualization.mspx
Hope someone find it useful too.
MJ
October 3, 2008 at 10:35 am
Make use of Datediff function and its input parameters like dd for day, mm for month etc.
MJ
October 1, 2008 at 2:49 pm
Thanks Jerry. I will follow ur advice.
MJ
October 1, 2008 at 1:57 pm
Have you tried running the code from query analyzer? Does it delete the files when ran from query analyzer?
MJ
October 1, 2008 at 6:07 am
Is agent account having enough privileges on backup folder namely Read/Write.
MJ
September 30, 2008 at 11:32 am
September 29, 2008 at 3:06 pm
Have you run DBCC UPDATEUSAGE ('DatabaseName') WITH Count_Rows after that?
MJ
September 26, 2008 at 4:08 pm
You can't change the instance name.
HTH
MJ
September 26, 2008 at 1:42 pm
In 2005 you have an advantage of checking it through DMVs too:
Query sys.dm_os_memory_clerks
This DMV will help to know how much memory SQL Server has allocated through AWE.
SELECT
SUM(awe_allocated_kb) /...
September 26, 2008 at 12:28 pm
Thanks a ton Jerry.
MJ
September 26, 2008 at 8:29 am
Addition to what rajesh provided you:
Alter PROCEDURE create_DBFolders
AS
BEGIN
--Declare Variables
DECLARE @DBname VARCHAR(300)
DECLARE @Path VARCHAR(300)
DECLARE @backup VARCHAR(300)
--Get Directory Names
CREATE TABLE #DIR_NAMES ( DIRNAME VARCHAR(300))
INSERT INTO #DIR_NAMES exec xp_cmdshell...
September 25, 2008 at 12:38 pm
It would be helpful if you turn on profiler and catch the code running against your server for temp tables creation and .....
MJ
September 24, 2008 at 4:52 pm
Viewing 15 posts - 1,051 through 1,065 (of 1,365 total)