Viewing 15 posts - 16 through 30 (of 205 total)
What concerns me most about this thread is that there appears to be a lack of understanding about maintaining a SQL Server and its files.
With the right backup strategy and...
February 28, 2007 at 3:33 pm
We did some of this about 4 years ago under .Net 1.1 and c#.
While you get great intellisense out of your objects, we found that we struggled with the...
February 28, 2007 at 3:18 pm
Being a design problem, there might be a few other things that we would need to know to be of help to you.
Is the inner procedure dependant on the outer...
February 28, 2007 at 3:10 pm
Found this in BOL (SQL 2005)
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/repref9/html/d0637fc4-27cc-4046-98ea-dc86b7a3bd75.htm
Might be helpful in explaining how the restore of a subscription database will work.
February 27, 2007 at 12:23 pm
OK, I did a little review by commenting each query and this is what I came up with
-- based on the pk supplied, get the new date modified
February 26, 2007 at 7:29 pm
It might seem a little obvious, but check the indexing you have on the table against the joins for your filters.
We experienced similar symptoms to this in SQL 2000 a...
February 26, 2007 at 7:11 pm
this works the way John described it
create table #temp_india
(
word varchar(20) )
go
insert
#temp_india (word
February 26, 2007 at 7:05 pm
You may need to broaden the scope of your question.
Which replication mechanism are you referring to?
For a brief summary
Snapshot - the whole subscriber gets overwritten manually/automatically (scheduled), no updates...
February 26, 2007 at 6:44 pm
Well, that was certainly an interesting read. Who needs Coronation Street!
So, what have I learnt today?
1. If I have a database that allows NULL values in some fields, I am now better...
February 26, 2007 at 3:41 pm
I agree with Tatsu and Webrunner.
I always thought XML was just a way to transport data in a formatted fashion, mimicking or simplifying the relational structure from the storage engine -...
February 22, 2007 at 1:25 pm
If they are temporary tables, why are you trying to drop them? They should go out of scope whenever the stored proc is completed.
My guess is that you tested the...
February 21, 2007 at 8:29 pm
I have done this before with c#. So it shouldn't be too difficult to get it done in VB.Net.
Here is a link that might be helpful
http://aspalliance.com/1081_CLR_Integration_in_SQL_Server_2005
I haven't tried this...
February 19, 2007 at 2:21 pm
I presume that the columns names in the temp table match the column names being returned from the stored procedure?
Could it be something as bizarre as having to declare the...
February 19, 2007 at 1:20 pm
Simple and to the point Jack. I agree.
Those that were honest enough to point out the mistake get the reward. Those who were devious have to pay.
Amazon comes out...
February 18, 2007 at 1:44 pm
Viewing 15 posts - 16 through 30 (of 205 total)