Viewing 15 posts - 1,171 through 1,185 (of 1,995 total)
oh - also
the state of those conversations
state_desc: DISCONNECTED_INBOUND
i think (and i may be incorrect) that the initiator of the conversation is not closing the conversation - which is...
May 18, 2012 at 8:48 am
bingo - here is your problem
your service broker conversations are not being closed, this puts memory pressure on and forcessql to dump these to tempdb - sql does not know...
May 18, 2012 at 8:44 am
james.ciesla (5/18/2012)
I agree that an SSIS solution would typically be the best solution for transferring data to a CSV file. It tends to be more easily modified/debugged down the road.James
i...
May 18, 2012 at 8:30 am
i really would avoid approach 2 - this might make querying easier for now, but someone will change the reports later as "new requirements are added" and maybe this table...
May 18, 2012 at 8:17 am
HowardW (5/18/2012)
AlAndrew (5/18/2012)
michael vessey (5/18/2012)
UPDATE a
SET a.Age = b.age
from table_1 a left outer join (
SELECT userid,age from table_2 x where recdate=(select MAX(recdate) from table_2 where...
May 18, 2012 at 7:50 am
brent ozar does some excellent video podcasts - http://www.brentozar.com (i think)
May 18, 2012 at 7:27 am
acorrei1 (5/18/2012)
GO
ALTER DATABASE tempdb
ADD FILE
(
NAME = tempdb_data_04,
FILENAME = 'x:\xxx\xxxx.ndf',
SIZE = 2MB,
FILEGROWTH...
May 18, 2012 at 7:21 am
if @sync_type initialize from backup is not the correct one, then it will be @sync_type='none'
see books on line
May 18, 2012 at 7:10 am
hiren.patel 911 (5/18/2012)
michael vessey (5/18/2012)
i have done this before - there is an option that you can use, but it depends on how much of the data on your POS...
May 18, 2012 at 7:08 am
with X (schemaname,tablename,recordcount)
as
(
SELECT s.Name AS SchemaName ,
t.Name AS TableName ,
SUM(p.rows) AS RecordCount
FROM ...
May 18, 2012 at 7:02 am
i think this is correct
UPDATE a
SET a.Age = b.age
from table_1 a left outer join (
SELECT userid,age from table_2 x where recdate=(select MAX(recdate) from table_2 where userid=x.userid and age is...
May 18, 2012 at 6:58 am
hiren
i have done this before - there is an option that you can use, but it depends on how much of the data on your POS server is replicated back.
you...
May 18, 2012 at 6:50 am
also try looking to see how many conversations are still open
select * from sys.conversation_endpoints
maybe your application is not closing the conversations after the messages.
since you've got nothing on the queues,...
May 18, 2012 at 4:54 am
Viewing 15 posts - 1,171 through 1,185 (of 1,995 total)