Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,790 total)

  • RE: Transactional Replication

    Nope, transactional replication can definitely handle it. If you start running into latency give a post back and we can work through that.

  • RE: SQL Server is terminating because of fatal exception e06d7363

    Krasavita (2/23/2011)


    Hello, this is my info about my server,but how can I see if there SP2 for SQL 2005

    Microsoft SQL Server Management Studio9.00.4035.00

    Microsoft Analysis Services Client Tools2005.090.4035.00

    Microsoft Data Access Components...

  • RE: SQL Server is terminating because of fatal exception e06d7363

    Definitely agree, PSS is the way to go here. Please post back with what you find.

  • RE: Replication problem

    Great. I was beginning to wonder if that was the issue which is why I posted that last query. Glad you got it working and thank you for updating.

  • RE: Commuting Pain

    I'll have to write my perceptions on remote working but will say that I have been working remotely either part or full time for the last 5 years with the...

  • RE: SQL IO Errors

    Is it occurring consistently or sporadically? If consistently then there is probably something seriously wrong with the SAN, either in the communication layer or the controller and possibly at the...

  • RE: transactional backups

    If you are going to continue to restore the log backups then you are going to have to leave it in recovery making it unusable as well.

    Have you read...

  • RE: transactional backups

    Yes, that is a log shipping scenario. Is there a reason you wouldn't just use Log Shipping rather than building this up yourself?

  • RE: Preventing thiefs from reverse enginnering stored procedures

    GilaMonster (2/22/2011)

    If your code is that valuable, the only option that will protect you is to host the SQL server yourself and never give the clients the databases. Anything else...

  • RE: Locate Column Name in all Tables

    something like this should work;

    select object_name(id) from syscolumns where name = 'col1'

  • RE: Preventing thiefs from reverse enginnering stored procedures

    sdffdfad faadffad (2/22/2011)


    DBAs have very little to do with the buy or not to buy decisions in the real world. Competitive design and price and - that's what's all...

  • RE: Query Performance -Troubleshooting

    yuanyelss (2/18/2011)


    The issue scales with volume anyway and the particular query is largely irrelevant. A query that runs <1 sec on the test box takes 23 seconds on Prod...

    What are...

  • RE: String Manipulation/Character Removal

    Sean Lange (2/18/2011)


    David - yours is about half as much typing as mine but has a lot more +1 -1 than mine. They both certainly work equally well. :hehe:

    Yeah -...

  • RE: String Manipulation/Character Removal

    Sean - you beat me and I think yours looks cleaner but I'm posting anyway. 🙂

    DECLARE @string VARCHAR(50)

    SET @string = 'IA_JOOWEN_1-F3D9NN'

    SELECT SUBSTRING(@string, CHARINDEX('_', @string, 1) + 1, ( LEN(@string) -...

  • RE: Replication problem

    Can you verify that this query returns 0 rows when run in your publication database;

    SELECTsp.name AS publication_name,

    ss.srvname AS subscriber_name,

    sa.name AS table_name

    FROMsyssubscriptions ssJOIN sysarticles sa

    ON ss.artid = sa.artid

    JOIN syspublications...

Viewing 15 posts - 316 through 330 (of 1,790 total)