Viewing 15 posts - 1,216 through 1,230 (of 5,103 total)
You should post DDL of table, the query you are running and the indexes there.
Without this it will be very difficult to help you.
June 5, 2008 at 11:22 am
You can Use UPDATE FROM syntax
UPDATE dest SET col1 = src.col1 , col2 = src.col2 ...
FROM local_db_table dest join other_database.schema.othertable src
on...
June 5, 2008 at 8:31 am
Christopher Stobbs (6/5/2008)
Hi All,Alternatively is it possible to add a nullable field without a default to a table that has data using a WITH NOCHECK?
Thanks
Chris
Yes that is possible:
ALTER TABLE tbl_name...
June 5, 2008 at 8:24 am
gavin.duncan (6/5/2008)
Ive written the following code to check if a foreign key exists, and if it doesnt to add it to a table. The code i have is:
IF...
June 5, 2008 at 8:19 am
I have seen this issue a couple of times I have been able to get to the root cause on any occasion.
It has not been frequent enough for me to...
June 4, 2008 at 3:49 pm
Cool. Glad you got it working!
June 4, 2008 at 3:33 pm
Are you including "instancename" in your procedures ?
June 4, 2008 at 3:15 pm
mailsar (6/4/2008)
Hi noel,I appreciate your suggestion.What do you mean by publication management issues?
Thanks,
Kayal
Depending how you configure your publication you can come across several "unexpected" things like system stored...
June 4, 2008 at 3:09 pm
Matt Miller (6/4/2008)
Rut roh....looks...
June 4, 2008 at 3:05 pm
That is totally right.
The problem is that "replication code" does not like IP addresses as Server names.
June 4, 2008 at 3:00 pm
HOSTS or LMHOSTS are a way to BYPASS DNS queries. so your network client does not need to resolve the Computer Name.
June 4, 2008 at 12:13 pm
Viewing 15 posts - 1,216 through 1,230 (of 5,103 total)