Viewing 15 posts - 196 through 210 (of 366 total)
The 'TargetServersrole' role in the msdb database gives access to control certain jobs. This may be what you are after
Regards
May 20, 2003 at 7:30 am
You can use the command line programs 'OSQL' or 'ISQL' to run .sql files from the command line without opening them.
command line commands can be run from inside Query...
April 28, 2003 at 5:54 am
If you are after the full database, you can run a backup/restore.
For coping data from tables, you can use dts or bcp.
April 27, 2003 at 1:27 pm
You would need to run a one-off conversion to bring all the historic data in-line, and from that point onwards save the dates in UTC.
April 25, 2003 at 9:06 am
There is a basic table showing time zones/utc conversion at
April 25, 2003 at 6:53 am
Wouldn't using UTC time function sort this out i.e. using GETUTCDATE() rather than getdate()
Edited by - steven_white40 on 04/25/2003 06:24:54 AM
April 25, 2003 at 6:22 am
I wonder how feasible it would be to install the sql server 2000 eval edition (which I seem to remember Microsoft patched to sp3), then upgrade the server to the...
April 22, 2003 at 1:24 am
Take a look at the install log files, this may help you identity the problem.
Also if you run out of ideas you could try and install mdac separately. Then once...
April 14, 2003 at 6:38 am
Try the DATABASEPROPERTYEX function
eg.
SELECT DATABASEPROPERTYEX('Pubs', 'Recovery')
April 14, 2003 at 5:48 am
Have you checked the sql startup account for that server.
If the account has been set to 'change password on next login' etc it will not be able to obtain any...
April 11, 2003 at 4:48 am
Look in the sql log directory on the server.
You should have a .dmp file which may give more information
April 4, 2003 at 4:35 am
When you run DTS via xp_cmdshell it will run on the sql server, rather than your pc
Does you .xls file exist in the c:\test directory on your sql server?
April 4, 2003 at 12:14 am
You can use server side traces to record this information, then load it into a table.
See the follwing link for more detils http://www.sqlservercentral.com/columnists/hji/trace.asp
April 3, 2003 at 12:13 am
Does it work if you execute the run the DTS package from the server?
DTS runs client side, hence if you run it via Enterprise manager on your pc it runs...
April 1, 2003 at 5:17 am
Viewing 15 posts - 196 through 210 (of 366 total)