Forum Replies Created

Viewing 15 posts - 91 through 105 (of 128 total)

  • RE: Best way to import/export

    DTS is the best way to go. The export to Excel is very easy. The updating is a bit harder, but a simple solution would be to have DTS import...

  • RE: Table Join kills Performance

    Best guess is lack of indexes on the join columns and now SQL has created statistical indexes for these and the joins are now using them. 

  • RE: SA Password

    Are you using integrated security or standard. I am assuming standard. If so then change the security mode to mixed (this can be done via the registry - it has...

  • RE: To unicode or not to unicode ?

    Are you going to be storing any information in double byte languages - Chinese, Japanese etc. If so then these columns should be 'n'. If not and there is no...

  • RE: Server Name Change

    What is in syservers ?- usually it is best to do an sp_dropserver and an sp_addserver (with the local option).

    Hope this helps.

  • RE: Indexes named "_WA_Sys_*"???

    The system statistical indexes are usuallya good starting point for potential additional indexes. See what SQL has created and these may indicate that the database in uder indexed.

    Tables without clustered...

  • RE: Japanese Characters?

    Hi Brian (are you the real famous SQL Brian Moran?).

    First thing to check - Is the database column nchar or nvharchar. Then how are you trying to do the insert...

  • RE: More than one instance on a server?

    Other advantages of instances

    - better security not using the deafulat TCP port

    - each instance has its own tempdb

    - plus you can have MSDE instances (with its limitations eg 2GB database...

  • RE: DTC unable to begin a distributed transaction

    Back to basics - is the MS DTC service running and what account is it running under?

    AT

  • RE: Securing SQL Server 2000 database.

    hi Richard,

    Basic security concepts that will help you secure your server quickly - disable all network protocols that are not required. If using TCP change the port from 1433 -...

  • RE: Changing SQL Server Service Accounts - Problem with xp_cmdshell

    That should be all you need - good problem solving of your own problem. I usually make it easy and allow the service account more access by putting in the...

  • RE: Multiple SQL Instances

    You may want to set the TCP port fo each instance you create. This gives more control over the connection parameters. Also ther is alimit of how many instances you...

  • RE: Hardware Requirements For SQL Server 2000

    Processors - 4 (min 2)

    RAM - 4GB (min 2)

    NIC's - min 100 Mb, prefer Gig - teamed NICs

    RAID contollers - min 2 eliminate SPOF (the more the better)

    Disks - OS...

  • RE: Automatic Statistics not being created

    Have look at the system statistical indexes, they may be a clue to aditional indexes being needed.

    What is the fillfactor and pad index %'s.

     

  • RE: Log Shipped reporting database needs different objects, permissions

    Linda,

    Second thought - what about differential or incremental backups to keep the data transfer minimal. Obviously have to be a manual process.

    AT

     

Viewing 15 posts - 91 through 105 (of 128 total)