Viewing 15 posts - 61 through 75 (of 95 total)
Hi,
you should set up a performance monitoring.
You can start, checking the Buffer Cache Hit Ratio over time.
With the following statement you can get the current performance counter value of the...
April 13, 2011 at 4:23 am
Hi,
will the stored procedure accessed by a application and what do you want to do with this login?
April 13, 2011 at 4:12 am
Hi,
if I understand you right, you want to run your xml generating application on another copy of the live database. So I can actually exclude mirroring because you can't read...
April 13, 2011 at 3:26 am
Perhaps some changes to sql server are made?
Look at the instance reports -> server dashboard and then non-default configurations.
Execute following statements to get details of the memory usage:
-- Buffer cache...
April 13, 2011 at 3:14 am
Have you already verified the restore paths of each file whose are listed on the options view of the management studio restore dialog? Perhaps there is a fault. Or try...
April 12, 2011 at 4:07 pm
I meant to kill the corresponding task of the AD Helper service. Or is there no corresponding spid.
Furthermore you can try to track the activity of the service through processmonitor...
April 12, 2011 at 3:58 pm
Hi,
what shows the task manager. How much memory is free of the physical memory? Because the sql server would only take physical memory and not page file memory.
Is the server...
April 12, 2011 at 1:17 pm
Hi,
if you want to create an indexed view you must create the view with the option SCHEMABINDING which ensure that the underlying table schema will not change.
CREATE VIEW v_MyViewName
WITH SCHEMABINDING
AS
<YOUR...
April 12, 2011 at 1:13 pm
Hi,
can you kill the corresponding windows session?
Greets
Patrick Fiedler
April 12, 2011 at 12:53 pm
Ok,
if you want to be sure that there is a dollar amount in it you should exclude rows without dollar amount with the following:
[MESSAGE] NOT LIKE '%[%!"§&/()=?\@{[]}+*#_;a-jln-z]%' AND
( ...
April 12, 2011 at 12:39 pm
Hi dant,
today i noticed one of the databases I'm using has multiple files in the same filegroup, all in the same spindle.
is there any benefit in this?
There is no performance...
April 12, 2011 at 12:25 pm
Hi,
with which account the sql server service is running? Has this user permissions to read "F:"? Try to open a cmd as the account user with
runas /noprofile /user:DOMAIN\USERNAME cmd
type...
April 12, 2011 at 10:43 am
Hi,
what version of sql server you have? And are the live tables connected to each other via foreign keys?
If you want to merge all tables I would suggest to write...
April 12, 2011 at 10:37 am
GrassHopper (4/11/2011)
[MESSAGE] LIKE '%[0-9],[0-9][0-9][0-9]%'
OR [MESSAGE] LIKE '%[0-9][0-9][0-9][0-9].[0-9][0-9]%'
OR [MESSAGE] LIKE '%$[0-9][0-9][0-9][0-9]%'
OR [MESSAGE]...
April 11, 2011 at 1:55 pm
Hi,
it depends on the table definition especially the index definition of the table(s). So please post the table definition with the index information. If you have a clustered index set...
April 8, 2011 at 4:21 pm
Viewing 15 posts - 61 through 75 (of 95 total)