Viewing 15 posts - 391 through 405 (of 1,655 total)
What is the default schema for the user "abc"?
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...
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...
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.
April 16, 2009 at 8:42 am
Sorry but I have no idea what you want. Could you give us more details?
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.
...
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...
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
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...
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.
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,...
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...
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.
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...
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...
April 15, 2009 at 5:30 am
Viewing 15 posts - 391 through 405 (of 1,655 total)