Forum Replies Created

Viewing 15 posts - 91 through 105 (of 163 total)

  • RE: Delay In replication

    basically SQL Server creates a job to run log reader as and when agent starts.  If that is created properly you are fine.  (Delays are possible when the publisher, distributer...

  • RE: How to do? DB1 + DB2 = DB

    This workaround may help you.

    After the snapshot replications ( both tables )are created (let me say them are created as DB1_TableX and DB2_TableX) , stop the agent for a while.

    Copy the...

  • RE: Need help reading identity across linked server

    Weird!  Ident_Current('TableX') should be null if you are running the query from SQL1. (I assume you don’t have the same table in SQL1)

    However, If it is working..Dont break...

  • RE: Need help reading identity across linked server

    This is one of the areas where you may need to query system tables. The following query returns all tables and their identity values. (I assume that the identiy columns are...

  • RE: An Identity Crisis

    My apologies...  Just a few minutes back I found another area where we need to access system tables:  to identify current identity values on linked server. you article is usefull in that...

  • RE: An Identity Crisis

    I mentioned 3 points... Unfortunately all negative points:

    1.  The crisis is nothing to do with Identity.  It is regarding DB design. I believe all agree on that. 

    2. This is...

  • RE: An Identity Crisis

    All data types have their limits. This crisis is nothing specific to Identity columns.  It is related to lack of upfront planning.

    Additionally, Microsoft always recommends us to use Information_Schema views and...

  • RE: Adding article to the existing column

    Hi,

    Thank you for oyur reply. 

    The existing publication contains some vary large tables,  (millions of records) so if I drop and re-create the subscription, will I have a new snapshot...

  • RE: Duplicate SQL Server ix ?

    The second index appears like a  "covering index".  it will be usefull to read the data directly from index without going to the data pages. 

    Another thing i can see...

  • RE: Custered index scan - why not seek?

    Let me share some of my thoughts on this.

    First of all I would like to admit that I am a bit clueless on this issue.

  • RE: i have a date problem

    thank you very much for your valuable comments. I am sorry, I should have elobrated it in the first place itself.  However, if you have any issues, please feel free...

  • RE: i have a date problem

    yes.

     

  • RE: i have a date problem

    before running your statements, run this statement:SET DateFormat dmy

    remember; this statement is connection wide.

  • RE: Extended stored procedures

    Fron what i gathered, you can create proc using any language.

    check http://www.codeproject.com/Purgatory/NET.asp for further details

     

  • RE: NEWBIE - Joins

    better design would be you seperate them into 2 fields and connect seperately

    However, this would do:

    Select A.*, B.client_ID  from BDI A, Client B where substring(A.clientref,1,6) = B.clientref and...

Viewing 15 posts - 91 through 105 (of 163 total)