Viewing 15 posts - 43,801 through 43,815 (of 49,571 total)
How have you set the linked server up? What errors is it giving?
October 14, 2008 at 10:49 am
GSquared (10/14/2008)
October 14, 2008 at 10:48 am
I don't suppose you have a backup of distrbution?
Did you drop the database, or did you delete the files of distribution? If you query sys.databases, is distribution listed?
October 14, 2008 at 10:42 am
Is the drive full? Is there a max size set for the file?
October 14, 2008 at 10:40 am
Well, that depends on whether you want your indexes to be selective or do you want them to be useful and used.
The clustered index benefits from unique values and an...
October 14, 2008 at 10:37 am
If your dev's getting an error, post the full error message here and we can help diagnose the cause.
October 14, 2008 at 10:32 am
A rebuild won't hurt. Whether or not it's necessary depends on where the rows you're deleting are in that index. If scattered all over the place, then a rebuild's not...
October 14, 2008 at 10:32 am
The question is do you want the theoretical result (where NULL, 1 and 1, NULL are both right) or the actual result that the current versions of SQL give for...
October 14, 2008 at 10:29 am
You don't need a where clause anywhere. If only 1 row is affected by the update, then inserted and deleted will have only 1 row in.
If there's a chance that...
October 14, 2008 at 6:43 am
Ok, that is odd.
What does this return?
DBCC SQLPERF(logspace)
October 14, 2008 at 6:41 am
As I said before, I've said what I think you should do. If you disagree, then I'm out of suggestions as I don't know what else you could do.
October 14, 2008 at 6:39 am
tochaturvedi (10/14/2008)
Hi Gail,Thanks for the reply.
I know that the above trigger will fire after insert action to the sometable and insert the records to someothertable.
Just the one column.
You used the...
October 14, 2008 at 6:10 am
virgo (10/14/2008)
can any one please let me know if there is any system table where i can find sql server error log details
other than general text error log file and...
October 14, 2008 at 5:40 am
tochaturvedi (10/14/2008)
The trigger should insert records into tables.I need only general examples.
CREATE TRIGGER trg_SomeInsert ON SOMETABLE
AFTER INSERT
AS
Insert into someothertable
Select somecolumn from inserted
GO
Does that help at all?
October 14, 2008 at 5:35 am
A snapshot doesn't just move the updated rows, it will copy the entire database to the subscriber every day.
Still, since it's not transactional it shouldn't have a big (if any)...
October 14, 2008 at 5:34 am
Viewing 15 posts - 43,801 through 43,815 (of 49,571 total)