Viewing 15 posts - 6,661 through 6,675 (of 7,466 total)
I guess EM is still collecting informationschema-data. this may take a while. (we have setup a couple of dts-trials with db2 OS/390, there also it takes a while befor it...
March 7, 2005 at 12:55 am
maybe http://www.sqldts.com contains a solution for you ?
check out sqldmo ?
March 4, 2005 at 12:29 am
adding to phillcart 's reply :
and implement as backupsolution Full (weekly?) / diff ? (perf.impact) / and log (hourly) backups. according to a sla.
March 3, 2005 at 4:56 am
I'm having the same problem, but I'm using a workaround.
Open the VPN, use mstsc (remote desktop connection) to logon to a (sql)server and then open sqlEM and work from there...
March 3, 2005 at 12:15 am
start SQL Server in minimal mode from the command line (-f)
use Query Analyser :
use master
go
exec sp_helpsort
go
didn't run it over here
March 2, 2005 at 8:42 am
euhm ... just slipped into my attention ...
... keep in mind your model-mdf/ldf have to be with the same charset as the old one or you can have some nasty things coming...
March 2, 2005 at 8:07 am
-- how to determin SQLServer Uptime
-- Tracking Uptime by Brian Moran http://www.winnetmag.com/SQLServer/Article/ArticleID/38042/SQLServer_38042.html
--
SELECT @@servername as ServerName, datediff(mi, login_time, getdate()) as SQLServer_UpTime_Minutes
FROM master..sysprocesses WHERE spid = 1
go
-- my own...
March 2, 2005 at 7:34 am
- take a look at SQLDMO
- maybe this can help you out ...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=107508
"C:\Program Files\Microsoft SQL Server\MSSQL\Upgrade\scptxfr.exe" /s yourserver /d yourdb /I /F filepath
March 2, 2005 at 5:02 am
If you 're still using the default modeldb, you can copy another model mdf and ldf file from an other server ( dev ? ) to the datafilelocations of your...
March 2, 2005 at 12:06 am
did your temdb-file(s) autogrow ?
If this autogrow takes more time and the query times-out, you also get the message db-full , but the grow...
March 2, 2005 at 12:00 am
did you stop and restart sqlagent after you implemented the first alert ?
You have to when you implement your first active alert.
March 1, 2005 at 12:16 am
This generates the script you need.
SET nocount on
create table #tmpPKeys(
TABLE_QUALIFIER sysname,
TABLE_OWNER sysname not null,
TABLE_NAME sysname not null,
COLUMN_NAME sysname not null,
KEY_SEQ smallint not null,
PK_NAME sysname null )
-- Get PK-info
insert into...
March 1, 2005 at 12:10 am
Is this what you want ?
It generates all needed statements without executing them !
-- creatie test case
if object_id('T_ParentMC') is null
begin
create table T_ParentMC (
col1 int identity(1,1) not null ,
col2 int not...
February 28, 2005 at 12:33 am
Best practise is to always specify a specific database in your connectionstring !
Rule No x : never rely on a @#|$! default !
If...
February 25, 2005 at 3:30 am
Viewing 15 posts - 6,661 through 6,675 (of 7,466 total)