Viewing 15 posts - 16 through 30 (of 72 total)
declare @year char(4),@month char(2)
set @year=convert(char(4),getdate(),120)
set @month=right(convert(char(7),getdate(),120),2)
select @month + '-' + @year
February 21, 2006 at 2:26 pm
try logging in using the sql server account and try to access the shared folder..
Also try executing the backup the cmd as part of a job..
If you are able to...
February 21, 2006 at 2:05 pm
February 21, 2006 at 1:48 pm
is the awe memory enabled?
And also is sql server clustered? If so were multiple instances active on one node at any point of time??
check the error log to see the...
February 21, 2006 at 1:42 pm
set nocount on
declare @output varchar(8000)
create table #output (outputtext varchar(8000))
insert into #output
exec master..xp_cmdshell "type C:\test.txt"
select @output=outputtext from #output
drop table #output
print @output
February 21, 2006 at 11:03 am
set nocount on
declare @output varchar(8000)
create table #output (outputtext varchar(8000))
insert into #output
exec master..xp_cmdshell "type C:\test.txt"
select @output=outputtext from #output
drop table #output
print @output
February 21, 2006 at 11:01 am
master..xp_cmdshell "type C:\test.txt"
February 21, 2006 at 9:03 am
Administrator tools->Services->SQL Server And Agent Properties->Log on..
Alternatively, enterprise manager->SQL Server Properties->Security and for SQL Agent....enterprise manager->Managemet->SQL Server Agent->Properties...
February 21, 2006 at 8:57 am
use dynamic properties task and pass the name as global variable...
February 20, 2006 at 4:09 pm
Check On which node is the service active and try starting from there..
And also how are you trying to start the service? use cluster administrator or the sql service manager..
February 20, 2006 at 3:56 pm
shrink the log file and release the space to OS..You can find more info abt in BOL..
February 20, 2006 at 3:43 pm
Remove/Modify the where caluse criteria and see the results...
February 20, 2006 at 3:41 pm
Scheduling the log backups frequently should log file size in check..
To congifure the log file to grow in MB's instead of percent...
Enterprise Manager->Database Properties->Transaction Log-> Auto Grow file->In MegaBytes... or...
February 20, 2006 at 3:38 pm
also backing up the log file more frequently would help to keep the log file size in check...
February 20, 2006 at 1:45 pm
Modify the above select statement to the following for skipping the columns which doesn't allow nulls so that the unnecessary checks can be avoided...
select c.[name], c.[colid]
from sysobjects o
inner join syscolumns...
February 20, 2006 at 1:42 pm
Viewing 15 posts - 16 through 30 (of 72 total)