Forum Replies Created

Viewing 15 posts - 16 through 30 (of 205 total)

  • RE: Restore database without trans log

    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...

  • RE: Strongly Typed Datasets (.net 2)?

    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...

  • RE: procedures with transaction or not ?!?

    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...

  • RE: limitations of publisher and subsciber

    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.

  • RE: Cursor vs Without Cursor

    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

  • RE: i swear there is a replication bug in sql 2005

    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...

  • RE: Query in SQL Server 2000

    this works the way John described it

    create table #temp_india

    (

    word varchar(20) )

    go

     

    insert

    #temp_india (word

  • RE: limitations of publisher and subsciber

    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...

  • RE: NULL Equals NULL?

    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...

  • RE: SOA

    I think the key question you have asked is "how to build this architecture into your environment".

    Slowly. If you already have many established applications running, but not really working...

  • RE: XML in the Database

    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 -...

  • RE: error handling how do I.....

    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...

  • RE: Data from a DB2 procedure call (using exec)

    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...

  • RE: Data from a DB2 procedure call (using exec)

    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...

  • RE: What''s the Right Thing?

    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...

Viewing 15 posts - 16 through 30 (of 205 total)