Viewing 15 posts - 256 through 270 (of 568 total)
Hello,
Can you post an example of the SP execution that fails? Also can you provide the BlogEntry table’s definition?
Regards,
John Marsh
March 15, 2009 at 9:25 pm
Hello Steve,
I would ask the same two questions of you i.e. has this Linked Server ever worked, and can you post a screen-shot of the Linked Server General Properties page?
Regards,
John...
March 15, 2009 at 9:04 pm
Hello Norman,
Apologies for the delayed response, but I have been on holiday for a few days.
Did you ever get to the bottom of this?
As you have Triggers on the target...
March 14, 2009 at 7:31 pm
Hello,
You could probably build a formatted report using this code snippet as the starting point:-
Select
*
From
sys.columns SC
Left Join sys.foreign_key_columns FKC
On (FKC.parent_object_id...
March 6, 2009 at 1:30 am
Hello,
The following thread provides a script solution (and also explanations of why you should normally not need to worry about maintaining column order in a table).
Regards,
John Marsh
March 6, 2009 at 12:50 am
Hello,
There are a couple of threads around that suggest it may be as a result of memory issues on your server. May be take a look at these:-
March 6, 2009 at 12:38 am
Hello again,
Are the Replication updates being delivered to the Target Server? If so, then are there any triggers on the Target Tables that might be reversing the updates?
Regards,
John Marsh
March 5, 2009 at 5:26 am
Hello,
The code below is generic, but you could adapt it for your needs:-
Declare
@MyTable Table (MyColumn Int)
Insert @MyTable Values (100)
Insert @MyTable Values (-100)
Insert @MyTable Values (500)
Select
Sum(Case When MyColumn > 0 Then...
March 5, 2009 at 1:52 am
Hello,
This could be caused by different versions of SQL Server between the DB files and your new installation.
What is the output if you run "SELECT @@version" on the SQL Server?...
March 4, 2009 at 11:52 pm
Hello,
You could accomplish this with a third party tool such Redgate’s Data Compare:-
1) Script the DB Objects.
2) Create an empty DB from this script.
3) Compare the original DB to the...
March 4, 2009 at 11:33 pm
Hello,
I think adding a Having clause to your Select statement would do the trick.
Regards,
John Marsh
March 3, 2009 at 11:20 pm
Hello,
I think this article describes the issue you are experiencing. It also suggests a possible solution:-
http://sqlug.be/blogs/por_dentro_sql/archive/2007/10/20/management-console-and-db-ddladmin.aspx
Regards,
John Marsh
March 3, 2009 at 10:57 pm
Hello,
I would guess the issue is related to permissions of the Account under which the SQL Server Agent Service runs.
One way to test this theory out is to temporarily...
March 3, 2009 at 10:44 pm
Hello again,
Hmm, I guess it isn’t a “big” problem as your application is working fine. It would be good though to be able to explain the cause - just to...
March 1, 2009 at 12:45 pm
Hello,
I quite like http://www.searchwindowsserver.com (the sister site to http://www.searchsqlserver.com)
Regards,
John Marsh
February 28, 2009 at 9:09 pm
Viewing 15 posts - 256 through 270 (of 568 total)