Viewing 15 posts - 16 through 30 (of 305 total)
if any body working in insurance company, please let me know what BI tools you guys are using.
thanks
November 27, 2013 at 9:02 am
Hi juancabrer, do you have SQL Server 2008 R2 SP2 CU8 in your environment?
fsaagent waittype is the top wait type. It's OLTP environment. MAXDOP is 1.
November 25, 2013 at 5:30 pm
Nothing is changed in the application except CU8 installation. From last few weeks the CPU usage is <25%. But today, CPU usage is 40 % most of the time.
November 25, 2013 at 4:34 pm
Thanks Lowell.
I'm looking for kind of complete SQL Server 2012 administration training in DVD's or online training. There are lots of sites but wanted to know popular ones.
Thanks
November 8, 2013 at 2:58 pm
Thanks Jerry,
We have only one production ORACLE database with 6 schemas in it and having this makes database maintenance is very easy as application works great.
For example set up data...
November 5, 2012 at 8:19 pm
I have looked at the code. It is this code that is setting the directory structure.
INSERT INTO @CurrentDirectories (ID, DirectoryPath, CreateCompleted, CleanupCompleted)
SELECT ROW_NUMBER() OVER (ORDER BY ID), DirectoryPath + CASE...
November 1, 2012 at 11:11 am
Thanks Lowell..that helped a lot.
October 10, 2012 at 8:56 pm
DECLARE @intFlag INT
SET @intFlag = 1
WHILE (@intFlag <=5)
BEGIN
PRINT @intFlag
SET @intFlag = @intFlag + 1
CONTINUE;
IF @intFlag = 4 -- This will never executed
BREAK;
END
GO
The [Continue] statement in the below will work similarly...
October 9, 2012 at 4:25 pm
Ola,
What is your referring to DatabaseNameFS in the following script?
SET @ErrorMessage = '';
WITH tmpDatabasesCTE
AS
(
SELECT name AS DatabaseName,
...
October 7, 2012 at 10:52 pm
I have changed it to SET @CurrentFilePath = @CurrentDirectoryPath
But still it's trying to create sub directories and failing
October 4, 2012 at 10:49 am
Does it have to be done in one or the other specifically
No. I just wanted to know which tool is the best one (sqlcmd or ssms) to log the script...
August 9, 2012 at 12:04 pm
Inside the server, It's working when I open the Internet explorer Run As Administrator:-):-)
Out side the server, it just works fine...thanks
December 15, 2011 at 12:06 pm
I would try changing the select to:
select name from master.sys.databases where name not in ('tempdb')
I changed the script to include master.sys.databases. But still, sometimes performs the Index defrag for all...
December 15, 2011 at 11:56 am
Viewing 15 posts - 16 through 30 (of 305 total)