Viewing 15 posts - 1,051 through 1,065 (of 1,363 total)
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
Just to confirm have you specified the named pipes pipe correctly(pointing to the instance you want to connect)?
MJ
September 24, 2008 at 4:35 pm
Have you tried by disabling antivirus, system level tasks that are running outside of SQL? Might be faulty dirver sort of issue...
MJ
September 24, 2008 at 12:13 pm
Viewing 15 posts - 1,051 through 1,065 (of 1,363 total)