Viewing 15 posts - 361 through 375 (of 612 total)
For this sort of thing I would recommend a server-side profiler trace. Don't use the Profiler itself if you intend to trace over an extended period.
December 6, 2013 at 4:19 am
Grant Fritchey (12/2/2013)
December 6, 2013 at 4:09 am
Knight (12/6/2013)
I know that 🙂 ok fussy, instance resource! happy now 🙂
Sorry......a little bit of pendantism coming through! The only reason I brought it up is to prevent the...
December 6, 2013 at 4:05 am
I wrote this:
USE [Monitor]
GO
/****** Object: StoredProcedure [dbo].[sp_DBSizing] Script Date: 12/06/2013 12:01:44 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE procedure [dbo].[sp_DBSizing]
as
begin transaction;
EXECUTE master.sys.sp_MSforeachdb
'USE [?];
insert into monitor.dbo.tbl_DBSizing
select...
December 6, 2013 at 4:03 am
Knight (12/4/2013)
As Gail...
December 6, 2013 at 3:59 am
nagasai88 (12/3/2013)
Even I know we cannot do like this, but Sr. SQL developer in our company said that he had seen this kind of implemenation in his previous company so...
December 6, 2013 at 3:58 am
Talib123 (12/6/2013)
So if I have a VM with 4 instances then the 1 license will cover...
December 6, 2013 at 3:52 am
wak_no1 (12/5/2013)
I've been tasked to audit a number of SQL Server environments.
I'm going to be creating baseline documentations for each environment, documenting statistics (database stats, waits stats, log usage etc.)...
December 6, 2013 at 3:45 am
D.Schrenker (12/5/2013)
We're having issues when our database backups are running SQL Server takes all of the...
December 6, 2013 at 3:27 am
Hi Lutz,
thanks for the comments. Nice....
The solution I have created (albeit far from perfect) is to allow a member from the Dev Team to have DBCREATOR rights. Only...
December 2, 2013 at 12:13 pm
george sibbald (1/12/2009)
SQLBOT (1/12/2009)
Andy Steinke (1/12/2009)
November 29, 2013 at 4:11 am
GilaMonster (11/29/2013)
November 29, 2013 at 1:17 am
GilaMonster (11/29/2013)
kevaburg (11/29/2013)
How could this be rewritten so it would be more secure? Ideally if I am going to implement it, I want it done properly......
This can't. To run...
November 29, 2013 at 12:49 am
Wow! Fantastic input!
So, the obvious question.....
How could this be rewritten so it would be more secure? Ideally if I am going to implement it, I want it done...
November 29, 2013 at 12:36 am
Great, thanks for your input.....I'll do it shortly and let you know how it went.
Two questions though (and please remember I am not a developer!):
1. Why NVARCHAR(MAX) and not...
November 29, 2013 at 12:05 am
Viewing 15 posts - 361 through 375 (of 612 total)