Viewing 15 posts - 1,051 through 1,065 (of 5,504 total)
Do you run Service Broker on that system?
If so, what does the following query return on msdb?
SELECT count(*) FROM sys.conversation_endpoints with (nolock)
August 31, 2011 at 12:35 am
Do you know what table(s) causing the msdb growth?
You could run the following code against the msdb:
create table #tableSize
(name varchar(100), rows int, reserved varchar(50), data varchar(50), index_size varchar(50), unused varchar(50))
...
August 30, 2011 at 3:19 pm
The following approach might cover for some missing Home Addrees values, too (that would be eliminated by the LEFT OUTER JOIN approach).
But the CrossTab method posted by R.P.Rozema is definitely...
August 30, 2011 at 2:45 pm
You could also have a look at the CrossTab article referenced in my signature.
August 30, 2011 at 2:25 pm
Maybe Rusanus Blog[/url] can help you to narrow down the issue.
You'll need to figure out "how far" the message is transferred and work from there.
August 30, 2011 at 2:22 pm
Let's see if I can help to clarify a few things:
I thought a user always had a schema?
Yes and no. A user always has a DEFAULT schema.
As per BOL:
WITH...
August 30, 2011 at 2:03 pm
What is the exact error message you get?
Is the db set to a max size or is can it grow unlimited but the drive full?
August 30, 2011 at 10:10 am
Lavanyasri (8/30/2011)
HI ,sorry . I got solution please close the ticket.
There's no reason to be sorry.
Instead you should post the solution you found so others migt benefit.
August 30, 2011 at 9:57 am
Did you try to iterate through the example I posted?
You might find that the concept you described won't lead to a valid solution since we would need a value of...
August 29, 2011 at 11:52 am
pandeesh (8/29/2011)
for Mr.Lutz example,we can put A1 for first occuring combination(30,30,20,20).
Please let me know if you need any more...
August 29, 2011 at 10:52 am
Nope, no (easy) way to solve it from my point of view.
How would you sort the following:
A1,1,100
A2,1,200
1,60
1,30
1,30
1,20
1,55
1,20
1,15
1,30
1,25
1,5
1,20
There are multiple possible solution and it would require a minimum of three steps...
August 29, 2011 at 10:30 am
Yes.
But you don't have to have the statement in the SELECT list. All that's required is it has to be a valid statement that can be used in the SELECT...
August 27, 2011 at 1:16 am
How will you decide if a product is already in the target database? Obviously, you can't use the ProductId so you have to use the "natural key". And what is...
August 26, 2011 at 2:03 pm
Grant Fritchey (8/26/2011)
Putting together an article on the most common backup errors (apart from not having one) and how to avoid them. I have four...
August 26, 2011 at 11:52 am
tshad (8/26/2011)
I added in the Order by without the Top just to see how it would order and it worked great.
3Main2MainClass
2MainNULLMainClass
1MainNULLNULL
Not sure what this...
August 26, 2011 at 11:26 am
Viewing 15 posts - 1,051 through 1,065 (of 5,504 total)