Forum Replies Created

Viewing 15 posts - 22,996 through 23,010 (of 39,917 total)

  • RE: Take a Seat

    That's a great idea for recruitment at growing companies, but not so good at larger ones. However larger ones could make a deal with a used furniture company to swap...

  • RE: Virtualization Hints

    One thing I'd mention that came up with a friend yesterday. Be sure that your help desk, sys admins, etc. know where the VM exists on a physical host. Someone...

  • RE: SIMPLE Full Backup Fails

    No it definitely sounds strange.

    If you can make the test, what if you delete your 7GB backup and then run the job? Does it work?

    I'm reaching here, testing different things.

  • RE: Take a Seat

    I'm with Gus. Go test them out, take a book, spend 15 minutes (at least) in each one you like. Maybe bring a laptop, type a little, get a feel...

  • RE: dts

    http://www.sqldts.com

    There are also many articles on this site.

  • RE: Not able to install SQL Server 2000 Boks Online

    It should install. It runs on the Microsoft help platform, but there might be components from the client tools it is expecting. Do you have the 2000 client tools installed?

  • RE: Over-Engineering

    Jack has it pretty close. Developers also focus or worry about things that may or may not be what is needed by the client. That's natural, we have a different...

  • RE: SIMPLE Full Backup Fails

    It's a simple OS error reported to SQL. Either the account has a quota limitation or there truly is not enough space. If you manually run the backup yourself, does...

  • RE: Dynamically adding columns

    I agree. It doesn't appear that you understand how SQL Server is optimized.

    coding for:

    ID Make Model Color

    --- ------ -------...

  • RE: transaction test!

    I think this is great behavior. Allows you to easily log things that might happen in a transaction that needs to roll back. If you used a permanent table, your...

  • RE: Clustering

    You can mirror the databases between sites.

  • RE: Constraining data across servers

    I'd actually run a maintenance job to clean these up every night, or flag them for someone to look at. Rather than do this at insert time, which could cause...

  • RE: Curacao SQL Server User Group

    Roy,

    If I can get Red Gate to send me, I might come out there for a talk!

  • RE: Over-Engineering

    Tend to agree with that. Throw one away.

  • RE: How can i check if an object is still in replication

    From BOL http://msdn.microsoft.com/en-us/library/ms151797.aspx

    --Which objects in the database are published?

    select name as published_object, schema_id, is_published as is_tran_published, is_merge_published, is_schema_published

    from sys.tables where is_published = 1 or is_merge_published = 1 or is_schema_published =...

Viewing 15 posts - 22,996 through 23,010 (of 39,917 total)