Forum Replies Created

Viewing 15 posts - 136 through 150 (of 324 total)

  • RE: nt_username and nt_domain columns of sysprocesses

    Not sure about SQL 7 , but in 2000 the sysprocesses.loginame column will hold the sql / windows login name used to connect.

    In the cases where a SQL...

  • RE: Backup strategy for replication

    If the aim is for the central office to be able to view / report on the branch data, you might want to have a look at SQL Server's Transactional...

  • RE: Data Stored

    If you are looking for the backup directory registry setting it is located under:

    HKEY_LOCAL_MACHINE
     \SOFTWARE
       \Microsoft
         \MSSQLServer
           \MSSQLServer...
  • RE: When I connect to a database with username and password

    Hey sorin

    You could check in master..sysprocesses for the current list of connections, and use the kill command to drop other connections. This is generally a bad idea though.

    Why do you...

  • RE: Saving DTS Packages

    DTS packages are stored in the MSDB database. if you backup and restore the msdb database  you should find your dts packages.

     

  • RE: Fragmented index list.

    How about gettinf DBCC SHOWCONTIG into a table so it can be tracked over time.

    (This is something I've yet to do)

  • RE: (De)fragmentation in case of a backup / restore

    I think I was asleep.

    DBCC SHOWCONTIG  will  show the fragmentation level

    DBCC INDEXDEFRAG will change and compact the physical order of the leaf level of an index

    DBCC DBREINDEX will rebuild indexes

    I'm still too asleep,...

  • RE: Databases with no transaction logs

    mmm... RESTORE DATABASE MyDatabase FROM DISK = 'null:'

    Jorge, sounds to me that your system is going to start of at a decent size, so you should probably read up about...

  • RE: How do I query Self Referencing Tables

    Indeed. Form the what MS is saying at this point, it's too early still to be benchmarking they're still going through optimisations, but at least the functionality is there to...

  • RE: MSDE Uninstall Doesnt

    Even tho the MSDE service isn't returning an error to the service control, it may be dropping an error into the windows event log, or into the {msde install path}\logs...

  • RE: Algorithams using T-SQL

    Hi MK

    I don't have any full-text search catalogs at the moment, so I can't help you further with this sorry.

    Read up about in BOL and test it out on...

  • RE: Two strange issues

    1. Maybe taskpad / em is out of sync. Close EM and check again. The last backup date is the last successful backup, so if the backups are failing, then...

  • RE: problem in Maintnence plan

    Have you tried checking the database with DBCC CHECKDB ?

    Sounds like the common problem of a text/ntext/image pointer going wacked. If you have a backup already, keep it handy.

  • RE: Search in DTS

    dts packages are stored in binary format inside of sql server.

    You can use the SQL-DMO to walk the server, packages and connections to find the  connections you are looking for.

    You'll need...

  • RE: alternatives to SQL Backup

    I wouldn't recommend ever getting SQL Server to backup directly to tape, mainly because we like to have our systems up as much as possible. (Have you...

Viewing 15 posts - 136 through 150 (of 324 total)