Viewing 15 posts - 286 through 300 (of 2,038 total)
Hi Ken
If your table is just needed for any offline information which are not related to the rest of your database you can either keep a local Access database or...
October 28, 2009 at 10:55 am
The DBA brought up a good idea. We'll switch the EAV database (which should cause the most load of the server) to another server this night and monitor the error...
October 28, 2009 at 10:52 am
Hi Wes
Wesley Brown (10/28/2009)
I didn't see anyone mention
Thanks for the link. The advised hotfix didn't work in our case. The hotfix was contained in SP1 (and SP3 - again) but...
October 28, 2009 at 10:23 am
No worries Flo, increases in the -g switch have resolved quite a few memory issues in the past for various clients. I know that you have probably increased this from...
October 28, 2009 at 10:11 am
Hi Lynn!
Thanks for your help.
is AWE enabled for SQL Server 2005?
Yes, AWE is enabled for SQL Server.
Is the server dedicated to SQL Server 2005?
Yes the server is a physical and...
October 28, 2009 at 10:07 am
I think, we can forget the hardware problems (spoke with our DBA). We just had a larger maintenance some weeks ago. Whenever we have a maintenance we switch to the...
October 28, 2009 at 9:54 am
Just happened 14th time today...
I noticed (from error-log) that almost all memory caches at zero KB except the MEMORYCLERK_SQLBUFFERPOOL. I'm not sure if this might be the problem.
I attached a...
October 28, 2009 at 9:19 am
Hi
I really don't think it makes sense that you just get any statements from here you don't understand. Please have a look to CREATE PROCEDURE. You really should know what...
October 28, 2009 at 8:38 am
Hi
We don't use the service broker in our scenario. (Could any other activities implicit cause this?)
Tempdb is stored on an own disk (only shared with the "distribution" database for replication)....
October 28, 2009 at 8:33 am
As the error says, you have to use CONVERT to convert an incremental number to a CHAR column.
October 28, 2009 at 8:19 am
Take this and move it to a procedure:
DECLARE
@table VARCHAR(100)
,@date VARCHAR(30)
,@sql VARCHAR(1000);
SELECT
@table = 'mytable'
,@date =...
October 28, 2009 at 8:16 am
Hi
Some questions:
* Do you pass a parameter of your first table/function to your left-joined function?
* Do you need the sub-query? If yes, did you try to move it into a...
October 28, 2009 at 8:01 am
First let me correct your sample SQL
create table #table1 (colA INT, colB INT)
create table #table2 (colA INT)
insert into #table1 values (1, 567)
insert into #table2 values (1)
insert into #table2 values (1)
insert...
October 28, 2009 at 7:51 am
Anyway... On SQL Server 2000 the only secure way to do this is a exclusive lock for your table and a index hint over your PK-column:
IF (OBJECT_ID('tempdb..#t') IS NOT NULL)
...
October 28, 2009 at 7:47 am
Hi AJ
Thanks for the really useful link. I'll definitely share this with our DBAs!
In this special case (I forgot to say this, sorry...) I already have trace files which have...
October 28, 2009 at 7:39 am
Viewing 15 posts - 286 through 300 (of 2,038 total)