Viewing 15 posts - 16 through 30 (of 40 total)
I found my solution for the resource governor
this is an example of my classifier funcfion
create function [dbo].[UDFClassifier]()
returns sysname
with schemabinding
as
begin
declare
@WorkloadGroup sysname,
@local_net_address varchar(48)
select @local_net_address = CAST(ConnectionProperty('local_net_address') as varchar(48))
if @local_net_address = 'XX.XX.XX.XX'
set @WorkloadGroup...
November 15, 2012 at 8:48 am
Thank you Leo, this is exactly what I want but now I have a problem to use this in my case.
I want to use the dns_name to configure the reresourceovernor...
November 15, 2012 at 1:57 am
I have thrown a look at the link, but I cant find my answer.
I give an exemple :
2 instances : mssql1, mssql2
2 DB : db1, db2
2 AG : ag1 with...
November 14, 2012 at 8:10 am
Thank you, but this system view displays a list of all listeners groups and not only one in which I made my connection.
November 14, 2012 at 5:48 am
Yes, the object already exists.
the problem is that someone has accidentally uncheck an article and when it have been recheck we lost indexes.
So it's why I want to automize the...
February 8, 2012 at 7:38 am
It's exactly what i mean!!
I want to keep the indexes on the subscriber when I adds a table to a publication.
So I wrote a script that create all indexes (script...
February 7, 2012 at 5:46 am
I want to shrink tempdb but I have a message
DBCC SHRINKFILE: Page 1:378832 could not be moved because it is a work table page.
.I cant restart the instance.
I tried...
December 9, 2011 at 8:18 am
Arfff !!! :doze:
Thx, but this is not the answer that I was hoping
Does the value after the '_' represents something (in the name in tempdb.sys.objects)
December 9, 2011 at 8:12 am
There is an error in [CDCDemo].[dbo].[spgGetCDCContract]
replace
SET @from_lsn = sys.fn_cdc_map_time_to_lsn('largest greater than', @FromLSNDate);
by
SET @from_lsn = sys.fn_cdc_map_time_to_lsn('smallest greater than', @FromLSNDate);
November 11, 2011 at 7:13 am
I want to know for one index, knowing the page_count, the avg_fragmentation, the number of rows ...
September 30, 2011 at 9:29 am
Hello,
thank you for these answers.
The initial problem is that the backup takes 18 minutes while the restore takes 50 minutes.
Why so much difference?
Thx
July 9, 2010 at 7:06 am
The maintplan is already created directly on the server, I tried by creating another maintplan and it changes nothing.
I even tried by starting the services in Local System and nothing...
June 18, 2010 at 7:52 am
Hi,
MeltonDBA : it's a 32-bit server.
OomBoom : sa is the owner of the maint plan and the job.
free_mascot : I tested at various hours and the problem is not that...
June 18, 2010 at 3:25 am
Viewing 15 posts - 16 through 30 (of 40 total)