Viewing 15 posts - 3,166 through 3,180 (of 7,429 total)
If you are running a TL backup to tape it could the throughput of the tape drive is the issue. There is a performance counter in performance monitor that can...
April 10, 2003 at 3:35 am
When the app is runinng to you retain a high number of apparently open connections? If so thn it may be affecting the connection release. Other than that I would...
April 10, 2003 at 3:33 am
Tim is right, it is very odd.
create table x (
ix int,
nx varchar(3)
)
insert x (ix, nx) values (1, 'cat')
insert x (ix, nx) values (1, 'dog')
now try
select * from x order...
April 9, 2003 at 11:07 am
Thinking further about this it might be even better to do this
SELECT DATEADD(d,DATEDIFF(d, 0, @DateTime),0)
Which means a common method for first day of month and year.
-- Method Month
SELECT DATEADD(m,DATEDIFF(m, 0,...
April 9, 2003 at 6:32 am
quote:
I'm not all that technical, but I have wondered why it continues to grab more memory rather than reusing what it has...
April 9, 2003 at 6:29 am
Also, look in BOL at AWE memory and how to configure.
April 9, 2003 at 5:03 am
You say CPU usage was < 5% but what was the memory usage at that point and besides SQL what was the heaviest user of memory. Also, many people say...
April 9, 2003 at 4:44 am
This is set on a per-connection basis. The way to control from the server, open EM and right click the Server in question, choose properties and goto the Connections tab....
April 9, 2003 at 4:32 am
Another good site to find information is http://www.aspindex.com
April 9, 2003 at 4:18 am
Method 2 would have made better sense to just do
SELECT CONVERT(DATETIME, CONVERT(CHAR, @DateTime, 112))
However, I had not seen method 1 before and I would say I like it very much...
April 9, 2003 at 4:11 am
In that statement it is true
quote:
In terms of storage and maintenance of indexes
beign the key....
April 9, 2003 at 3:51 am
Keep in mind if using QA that it has a set of connection options set of which concat null is on. Look at Tools/Options and the Connection Properties tab for...
April 8, 2003 at 6:09 am
I am not sure if it can be done and will depend on your Firewall, but the issue (I believe) is the Firwall does not forward those packets sent via...
April 8, 2003 at 4:46 am
I wear many hats myself and have so far been lucky enough to be both the Developer and DBA, but I have a good background in SQL and am constantly...
April 8, 2003 at 3:32 am
Primary keys biggest bennifit is to prevent insertion of duplicates. However if the majority of your queries do not use the PK column you will see better query performance for...
April 7, 2003 at 5:18 am
Viewing 15 posts - 3,166 through 3,180 (of 7,429 total)