Viewing 15 posts - 136 through 150 (of 324 total)
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...
October 13, 2004 at 12:44 am
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...
October 13, 2004 at 12:36 am
If you are looking for the backup directory registry setting it is located under:
HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \MSSQLServer \MSSQLServer...
October 7, 2004 at 9:52 pm
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...
September 30, 2004 at 11:53 pm
DTS packages are stored in the MSDB database. if you backup and restore the msdb database you should find your dts packages.
September 30, 2004 at 11:43 pm
How about gettinf DBCC SHOWCONTIG into a table so it can be tracked over time.
(This is something I've yet to do)
September 23, 2004 at 1:14 am
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,...
September 21, 2004 at 6:18 pm
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...
September 20, 2004 at 12:50 am
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...
September 20, 2004 at 12:42 am
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...
September 20, 2004 at 12:36 am
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...
September 20, 2004 at 12:25 am
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...
September 17, 2004 at 1:38 am
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.
September 17, 2004 at 1:17 am
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...
September 17, 2004 at 1:14 am
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...
September 16, 2004 at 6:40 pm
Viewing 15 posts - 136 through 150 (of 324 total)