Viewing 15 posts - 391 through 405 (of 1,654 total)
What is the default schema for the user "abc"?
[font="Verdana"]Markus Bohse[/font]
April 20, 2009 at 7:26 am
Hmm,
I always thought that more than 3 nodes was introduced with SQL 2005, but on the other hand I think that was related to Windows 2000 which came out...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 10:51 am
If you mean setting up a Profiler Trace, there is a slight performance impact but usually it's acceptable. It also depends on how you run it, do you log to...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 8:51 am
SQL 2000 Enterprise Edition only supports 2 cluster nodes.
So what you try to do is not possible.
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 8:42 am
Sorry but I have no idea what you want. Could you give us more details?
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 8:38 am
Christian Buettner (4/16/2009)
Carlo Romagnano (4/16/2009)
exec sp_helptext sp_addmessage
in the output search for @severity and you'll find this piece of code that is the law.
...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 3:30 am
I don't think it's related to SP3, at least I don't have such issues on my servers.
Could it be that the login for the group is disabled?
Another possibility is...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 3:21 am
So you're looking for the schema and the table name.
To get these simply JOIN sys.objects to sys.schemas
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 3:13 am
You have to use the INSTALLSQLDATADIR parameter. Problem is that this will only accept one directory for data and log files.
In case you want to have separate loctions for...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 2:57 am
This should work:
SELECT ds.Name,
OBJECT_NAME(i.object_id) AS [TableName]
FROM sys.indexes i JOIN
sys.data_spaces ds
ON i.data_space_id = ds.data_space_id
WHERE index_id 0
In case you have partitioned tables you must also join the sys.partition_schemes view.
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 2:46 am
You can use the 2005 dashboard, but there are a few problems.
I had a couple of times that a report gave an error the first time I used it,...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 2:31 am
Ok, I had it wrong.
No big deal but of course I investigated this issue a little more. I'm using SQL 2008 Build 1600, so no SP1.
Obviously what's in BOL is...
[font="Verdana"]Markus Bohse[/font]
April 16, 2009 at 1:53 am
What's the errormessage? Are you using Databasemail or SQLmail ?
We need more details if you want help.
[font="Verdana"]Markus Bohse[/font]
April 15, 2009 at 8:14 am
Wow, you're still using SQL 7.0.
In SQL 2000 or later UPDATETEXT will be logged if your database is in FULL recovery. But I assume an upgrade is not the solution...
[font="Verdana"]Markus Bohse[/font]
April 15, 2009 at 5:33 am
I would think that the answer to your question will be very different depending on who you ask.
My personally view is that as a best pratice you shouldn't use...
[font="Verdana"]Markus Bohse[/font]
April 15, 2009 at 5:30 am
Viewing 15 posts - 391 through 405 (of 1,654 total)