Forum Replies Created

Viewing 15 posts - 35,326 through 35,340 (of 39,720 total)

  • RE: SQL backup question

    You could use a Windows scheduled task to push the backups as well.

  • RE: Table Synchronization

    Do you have a datetime stamp of some sort?

    Or you could use triggers to capture info in another table and process that table to update production.

     

  • RE: SqlAgentMail does not work with win2003 server

    If you know the alert, you could send some information in the mail using static text or perhaps a query from sysperfinfo.

  • RE: MetaData

    I do not believe you can delete Meta Data Services from the EM snap in. Not sure it's a good idea. Why do you want to delete this?

    you can right...

  • RE: Changing Server Name

    Rename the Windows server.

    Inside SQL run:

    sp_dropserver serverb

    sp_addserver servera, local

     

  • RE: Worst Practices - Making a "Live" Change

    Developers always think it's a minimal change and I can easily back it out. What if your syntax (SQL) is correct, but you miss a join and implment a cross...

  • RE: Install SQL Server 2000, on Windows 2000 Profesional

    Are you trying to install server? Because you will have connection issues, I believe with W2K Pro. I thought there was a limit.

    You can install Personal edition, which is licensed...

  • RE: Sales Snapshot

    There are other ways to do this, but they result in complicated SQL that is hard to read, write, adn work with. Kevin's solution is the best method and if...

  • RE: Domain administrators

    While Brian has the best advice fro this, I typically leave the domain admins in because they are a small select group (here) and know better than to work with...

  • RE: Clone Database

    For a one time shot I use backup restore. Or for something like refreshing QA.

  • RE: SQL Server Agent has stopped working

    Be sure you check disabled account, computer restrictions, hours etc. in the account properties.

  • RE: Database connection loss

    You don't really want to use the timestamp type, rather a datetime marked at the time or some flag that indicates where they were. I'd post the data and insert/...

  • RE: Database owner with limited permission

    I like Chris' suggestion and would use that.

  • RE: OUTLOOK

    I'm not sure this is available in this extended stored procedure.

  • RE: Saving the results from xp_readmail to a table

    It's a stored procedure, so an insert..exec will do it

    create table mytest( drive varchar(2), mb numeric)

    insert mytest exec master..xp_fixeddrives

    select * from mytest

    drop table mytest

     

Viewing 15 posts - 35,326 through 35,340 (of 39,720 total)