Viewing 15 posts - 7,126 through 7,140 (of 7,466 total)
http://www.databasejournal.com/scripts/article.php/1496451
-- Update Originating_Server sysjobs !! for SQLAgent
http://support.microsoft.com/default.aspx?scid=kb;en-us;281642
SQL7.0 http://ambrosoli.com/ambrosoli/how_to_rename_a_sql_server_7_0.htm
If you connect using ip there is no problem, if you connect using sqlservername, you'll have to modify the...
February 25, 2004 at 12:33 am
having the same issue
It will work for the default instance, but not for the others.
February 25, 2004 at 12:26 am
all clients are on winXP sp1 with SQL2k sp3a (re-apply did not help).
ping is no problem.
I can register the sqlserver when I don't have EM browsing for servers.
SQLServiceManager also...
February 24, 2004 at 1:34 am
Like Frank Kalis and MrSQL said. Probably one db sould do fine.
The most frequently made worst practise is that one is tempted to go for phisical solutions without even having...
February 24, 2004 at 12:34 am
I don't use sqlmaint, but use my own dbreindex-generator. The main reason is that on our ERP-system (24/7) there is always a lock on a certain table.
On our MES-system,...
February 24, 2004 at 12:20 am
with
<< SELECT JOBID, JOBTITLE, JOBPOSTEDDATE
FROM JOB_POSTINGS ORDER BY CONVERT(VARCHAR(5), JOBPOSTEDDATE, 108) ASC >>
your query only sorts on the TIME(HH:mm)-part of your datetime (108format check BOL) !
If that is wat you want, your...
February 20, 2004 at 1:47 am
we have such "dynamic" tables.
parametertable
( tablename, colparam, colname, startdatetime , enddatetime, whodidit)
table
(datetimeInsert, d001 float, d002 float, d003 varchar(500), ...)
In the presentation layer, the...
February 20, 2004 at 1:23 am
my 2ct:
Thé main advantage is 'meaningless primary keys' !
Some use identity others use uniqueidentifier to do this.
Disadvantage of uniqueidentifier :
-...
February 20, 2004 at 12:44 am
can do
but I 've just foundout that the bo-client's mdac is not at 2.6 yet
I hope their helpdesk...
February 19, 2004 at 4:58 am
If only you had that (old) backup. With full logging, all could be restored to the point where you dropped the object(s).
(then you could restore to an alternate db with...
February 19, 2004 at 12:28 am
It surely would, but I would like to have some alternatives, because of # of clients using BO.
e.g. Windows aliassing the server. But I cannot seem to get to the...
February 18, 2004 at 11:59 pm
-dbcc updateusage can help out. statistics get a bit messy when you use truncate table every now and then.
-then dbcc spaceused your db and look for fragmentation rates.
-make sure you...
February 18, 2004 at 11:47 am
Do you have (not simple) logging ?
maybe log-explorer (lumigent) or log-pi can help out ?
February 18, 2004 at 11:39 am
February 17, 2004 at 4:40 am
you could use xp_logininfo, but imo you'd better use the security-capabilities of sqlserver.
e.g. grant a nt-group as db-user and then grant it the needed (sp) rights.
because then you avoid over-authorised...
February 17, 2004 at 2:41 am
Viewing 15 posts - 7,126 through 7,140 (of 7,466 total)