Viewing 15 posts - 286 through 300 (of 446 total)
try something like this.
SELECT sys.objects.name, syscomments.ctext
FROM sys.objects INNER JOIN
...
October 31, 2008 at 2:22 pm
I don't know if this is related to your issue or not, but I had same issue sometime back.
My production server was on Latin1_general_BIN collation and when I run a...
October 31, 2008 at 2:11 pm
simple and good question but 13 points, I think is too much to give.
May be author thought of 13 figure because it stands for scary !!!
October 31, 2008 at 11:23 am
Thanks, David. I was suppose to post this error and question on forum and then I found your reply.
Thanks again.
October 23, 2008 at 9:36 am
I had the same issue sometime back and going through some blogs, I found this and it worked for me.
Try setting the IIS security level to low and it will...
October 23, 2008 at 9:33 am
Couple of other articles on Change data capture are here with good explanation. I read them sometime back and are very useful.
http://www.databasejournal.com/features/mssql/article.php/3720361
http://www.databasejournal.com/features/mssql/article.php/3725476
http://weblogs.sqlteam.com/derekc/archive/2008/01/28/60469.aspx
October 23, 2008 at 9:22 am
danschl (10/23/2008)
I can see a need for thisbut 2008 rendition has too much overhead
Agreed. That's the reason I would not implement 2008 in my project at least for...
October 23, 2008 at 9:13 am
Nice article and worth giving it a try for this new feature. Now, with this feature in 2008, I hope there would be less need to create a history...
October 23, 2008 at 9:10 am
I just talked to my manager about upgrading to 2008 from 2005 and his answer is "why rush on things, that to on a product from MS. Let's wait...
October 22, 2008 at 12:44 pm
Good article with examples. Tried couple of them just now, but still I had a question? How many SQL DBA's use these commands and most of the info...
October 6, 2008 at 11:24 am
Kumar (10/1/2008)
I'm too curious to know, how a single .bak file is listing 3 .mdf file.
Have you just made any change to the screen shot of the picture?
Let...
October 1, 2008 at 9:45 am
FNS (9/29/2008)
September 29, 2008 at 9:55 am
Mohanraj (9/29/2008)
I am having a stored procedure which will delete 22 millions of record.
Is there any quickest approach to deleting these records from the tables.
below is the query is...
September 29, 2008 at 9:52 am
Nothing I am aware of in SQL Server 2000. Use this for 2005.
declare @dbid int
--To get Datbase ID
set @dbid = db_id()
select object_name(i.object_id) object_name,
i.name index_name,
i.index_id index_id,
i.type_desc type_desc,
c.index_columns
from sys.indexes i...
September 26, 2008 at 12:57 pm
I had used Spotlight on SQL Server Enterprise edition and also SQL diagnostic manager by Idera in different projects and both had given good results.
SQL diagnostic manager gives good historic...
September 24, 2008 at 12:32 pm
Viewing 15 posts - 286 through 300 (of 446 total)