Viewing 15 posts - 616 through 630 (of 5,356 total)
I was able to repair the table successfully with repair_with_data_loss without loosing the data, but now when I ran the report it failed again with the same error of Torn Page....
April 8, 2005 at 7:44 am
Adam, what should I say... I've been put under friendly pressure by Erland to participate in the private newsgroups. I'll beg my network admins on my knees to open up nntp...
April 8, 2005 at 7:41 am
Might be helpful to see what you have done.
April 8, 2005 at 7:22 am
Thanks, I know, I'm watching your post count and it's quite impressive. You're more than welcome in this competition!
April 8, 2005 at 7:06 am
Lucky me! You are certainly one of the most knowledgeable guys I've come across!
Looking forward for a friendly competition here.
April 8, 2005 at 6:53 am
Hehe, according to my internal statistics, I will beat Antares686 (#1 poster) by 20051219 on post count... Way to go here.
April 8, 2005 at 6:15 am
Not quite sure, if I understand you, but see if this helps:
http://www.sommarskog.se/dyn-search.html
And in case, that goes your direction, you'd better read this http://www.sommarskog.se/dynamic_sql.html , too. Try to convince your...
April 8, 2005 at 6:07 am
Guys, you really, really make me feel ashame. It's me, who's proud to be a part of this community!!!
April 8, 2005 at 6:03 am
Since you've asked this also in the MS newsgroup, you might have luck that some MS supporter will become aware of it.
In the...
April 8, 2005 at 5:25 am
As Dinesh already mentioned, there is no easy way for this. See if this helps:
set nocount on
create table showme
(
sno int not null primary key
, c1 char default 'a'
)
insert into showme(sno,c1)...
April 8, 2005 at 5:13 am
Posted something similar yesterday. See if this helps:
USE pubs
GO
SELECT DISTINCT city
FROM authors
WHERE NOT EXISTS
(SELECT *
FROM publishers
WHERE authors.city = publishers.city)
SELECT DISTINCT authors.city
FROM authors
LEFT JOIN publishers
ON authors.city = publishers.city
WHERE...
April 8, 2005 at 4:48 am
Have a look at BOL for IF...ELSE. There is an example. If you still struggle, please post the code.
April 8, 2005 at 4:43 am
Since index ID of 4 is fortunately not the clustered index on that table, have you already tried to rebuild that nonclustered index?
April 8, 2005 at 2:19 am
Viewing 15 posts - 616 through 630 (of 5,356 total)