Viewing 15 posts - 5,146 through 5,160 (of 7,191 total)
Andrew
If you're going to upgrade to SQL Server 2008 straight away, then just get your servers to a position where they can be upgraded. If that's SP4, then just...
August 16, 2011 at 6:04 am
scottichrosaviakosmos (8/15/2011)
THANKS, BUT HOW TO USE IT . i DONT KOW HOW TO USE IT AND LOCALISE IT.
Please don't type in capitals - some people interpret that as shouting.
Actually, the...
August 15, 2011 at 5:15 am
Does it work? If it doesn't, it's not right. After the collation name is the bit you need to pay attention to. And don't forget to change...
August 12, 2011 at 9:01 am
shiv-356842 (8/12/2011)
In this way right
Does either one work? That's usually a good test. I don't think they will, since the error message you were getting related to...
August 12, 2011 at 8:45 am
Again, the answer is in the error message. Just put a column alias after the collation name in each SELECT statement, the same way I did for the "DBName"...
August 12, 2011 at 8:27 am
Probably because your databases don't all have the same collation. Choose a collation that will make all the database names distinct, and specify it in every SELECT statement in...
August 12, 2011 at 8:06 am
Surely you don't need me to explain this to you? Read the error message. There's no such object as DB1.sys.principals. Why? Because there's no such database...
August 12, 2011 at 7:45 am
WITH Users AS (
SELECT 'DB1' DBName, [name] FROM DB1.sys.database_principals UNION ALL
SELECT 'DB2' DBName, [name] FROM DB2.sys.database_principals UNION ALL
SELECT 'DB3' DBName, [name] FROM DB3.sys.database_principals UNION ALL
SELECT 'DB4' DBName, [name] FROM DB4.sys.database_principals...
August 12, 2011 at 7:34 am
You could create a trigger on every table that you wish to protect in this way. The trigger would roll back the transaction if the deleted rows were more...
August 12, 2011 at 3:19 am
forsqlserver (8/12/2011)
Thanks, is there any msdn link on sql server and network service account.
I'm sure the search engine you use is as good as the one that I do.
Is there...
August 12, 2011 at 2:29 am
I'm sure if you really thought about it, you'd be able to answer that for yourself. Depends whether you want to find the text anywhere in the column's value...
August 12, 2011 at 2:17 am
I would strongly advise running your SQL Server services under a domain account. I don't know whether it's possible to grant access to Network Service on a remote computer,...
August 12, 2011 at 2:00 am
Yes. Use INFORMATION_SCHEMA.COLUMNS to find out which columns hold character data, and then build some dynamic SQL to search in all of those columns. Beware! Performance will...
August 12, 2011 at 1:55 am
ashok.faridabad1984 (8/12/2011)
Please help me if sysjobhistory table can help here and how..
Yes, sysjobhistory can help. You can interrogate it to find out which jobs have run and when, which...
August 12, 2011 at 1:22 am
Sri
I think you may be confusing primary key and clustered index here. When choosing a primary key, if one column uniquely identifies rows in the table, choose that. ...
August 11, 2011 at 8:34 am
Viewing 15 posts - 5,146 through 5,160 (of 7,191 total)