Viewing 15 posts - 7,156 through 7,170 (of 7,466 total)
sorry for visio
You can reverse-engineer it from within visio.
New DatabaseModelDiagram
database\reverse engineer
(you may have to create and odbc-dsn to get connected)
February 6, 2004 at 6:00 am
use " NOT EXISTS " ... that's the way to do it !
speed it up by adding an index on table/view Acct_Stats column prcs_dte.
February 6, 2004 at 5:24 am
just m 2ct:
select book, count(distinct page) as pagecount
from tl10_land
group by book
February 6, 2004 at 5:17 am
this can be don without unavailability :
check dbcc shrinkfile / shrinkdb in BOL
take special notice at Shrinking the Transaction Log.
February 6, 2004 at 5:12 am
You know SQLmail and clustering is not supported.
That's why I use smtp-mail on my clustered sqlservers.
SQLmail works, but only for a while, then it...
February 5, 2004 at 5:05 am
If it stays in rollback-state to long according to your expectation, you may need to stop and start your sqlserver-instance.
(I've had to do this frequently because some of my users...
February 2, 2004 at 1:02 am
Maybe you can get on the road with this :
(its a script I use to gather backup-job-info)
-- alzdba dd 08/01/2004
-- request Backup-job info
set nocount on
-- check BOL
select substring(case server...
February 2, 2004 at 12:49 am
I was thinking it should be something like that.
Did I overlook that documentation ?
Where/how did you...
February 2, 2004 at 12:17 am
I'm using alerts to perform these kind of task.
- Cmdshell stays closed.
- dba has control on jobs running on db-servers
- alertno-ranges support portability (DRP)
Test this...
January 30, 2004 at 1:04 am
As always : it depends.
.Net will definitely go for disconnected data with closed connections. Because of connection pooling, the overhead for having a "new" connection is minimised.
Same goes for others....
January 30, 2004 at 12:37 am
Also please do check : "Is the Schema Still Needed?" http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=32&messageid=11677 and the comments on it.
January 30, 2004 at 12:25 am
these jobs, running on SQL7sp2 with NT-4 sp6a, log an error-eventlog when they fail.
Since the server has been replaces by a SQLserver2ksp3a on W2Ksp4 it only logs warnings.
January 30, 2004 at 12:11 am
Check this thread. It handles the same "issue" :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=6&messageid=96649
January 28, 2004 at 12:22 am
In your select statement you can use case when ACCT_NO LIKE '%|' then REPLACE(ACCT_NO,'|','~') else ACCT_NO end.
January 28, 2004 at 12:14 am
sp_who / sp_who2 might help to determine who blocks.
If you haven en open EM connection to the db and an open connection to the db using QA, there are 2...
January 27, 2004 at 4:54 am
Viewing 15 posts - 7,156 through 7,170 (of 7,466 total)