Forum Replies Created

Viewing 15 posts - 7,141 through 7,155 (of 7,480 total)

  • RE: Connect to Aliased Cluster Named Instance

    having the same issue

    It will work for the default instance, but not for the others.

     

  • RE: mmc register server wizard fails ...

    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...

  • RE: Single database or multiple?

    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...

  • RE: Rebuilding Indexes

    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,...

  • RE: Sorting data on date n time values

    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...

  • RE: Use Values as Column Names

    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...

  • RE: Normalization

    my 2ct:

    Thé main advantage is 'meaningless primary keys' !

    Some use identity others use uniqueidentifier to do this.

    Disadvantage of uniqueidentifier :

       -...

  • RE: BO & sqlserver\instance using oledb

    can do

    but I 've just foundout that the bo-client's mdac is not at 2.6 yet

    I hope their helpdesk...

  • RE: droping table

    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...

  • RE: BO & sqlserver\instance using oledb

    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...

  • RE: Database size issue...

    -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...

  • RE: droping table

    Do you have (not simple) logging ?

    maybe log-explorer (lumigent) or log-pi can help out ?

     

  • RE: Getting NT Authentication group name within SQL

    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...

  • RE: Intermittent Error on SQL Server Agent:[SQLSTATE 42000] (Error 8198))

    isn't that (Being lazy) one of the top prerequisite to become a sysadm/dba

Viewing 15 posts - 7,141 through 7,155 (of 7,480 total)