Viewing 12 posts - 166 through 177 (of 177 total)
This can be done. Search 'Failover clustering , SQL server' in google... You will know.
January 16, 2009 at 7:58 am
Do u have IIS installed on the box? SSRS will require IIS to run.
Maybe it decides to not show the SSR because it didn't see IIS on your...
January 16, 2009 at 7:46 am
Nothing is found probably because the traces for those dropping operations have been cleaned up..which is bad.
Did you just try one trace file? there are usually at least 3...
January 16, 2009 at 7:38 am
Does this return anything?
SELECT * FROM ::fn_trace_getinfo(0)
If this shows something... then you have a trace running... and there is hope to find out what u are looking for.
January 15, 2009 at 4:00 pm
Try to get the info from the trace...
1. RUN this Script to get the path of your trace file
SELECT * from ::fn_Trace_GETINFO(0)
2. Replace the following .trc with your TRACE...
January 15, 2009 at 3:51 pm
/* Add the following scripts into your job step*/
DECLARE
@id char(8),
@filename varchar(50),
@cmd varchar(2000)
SET @id=convert(char(8),getdate(),112)
SET @filename='My FILEPATH Myfilename_'+@id+'.txt'
SET @cmd= 'bcp "MY QUERY" queryout '+@filename+ '-T -c'
--print @cmd
EXEC xp_cmdshell @cmd
GO
January 9, 2009 at 3:12 pm
I've had this once and not figured out why.
Things you might want to check: Job enabled? Job schedule enabled? Job schedule starting time and ending time; windows time service, task...
January 5, 2009 at 10:20 am
I assume that it will automatically move the data to new partition.
To make sure it is really the case, you can run the following before and after your splitting operation...
January 2, 2009 at 2:33 pm
You need to Split the range...twice.
1. add 1 new filegroups
2. add a file to the filegroup
3. Alter your partition scheme to include the added new filegroup with...
January 2, 2009 at 12:47 pm
It seems that you didn't install the Database Engine for Default instance; but you installed a default instance Reporting service.
Go to your SQL Server Configuration Manager, and click...
January 2, 2009 at 11:45 am
PLAN A:
1. (DB Level) delete his account from the users in those THREE Databases that you have problem with
2. ...
December 30, 2008 at 12:49 pm
Now Litespeed has Logshipping wizard.
Doing logshipping with Litespeed is super fast!
June 5, 2007 at 5:46 pm
Viewing 12 posts - 166 through 177 (of 177 total)