Forum Replies Created

Viewing 15 posts - 61 through 75 (of 102 total)

  • RE: Merge Replication Error

    The error message indicate your login credential on for agent is not valid, can you check if you can login to SSMS with the login on the server where you...

    Cheer Satish 🙂

  • RE: RTM version

    Yes Gail you are right... forgot to post complete output of select @@version

    Microsoft SQL Server 2005 - 9.00.1399.06 (X64) Oct 14 2005 00:35:21 Copyright (c)...

    Cheer Satish 🙂

  • RE: Interesting Move : Moving data to new FILEGROUP from older one

    The first link below explains the code that can be used which you might be already aware,the second answer your questions.

    http://www.mssqltips.com/tip.asp?tip=1112

    http://my.advisor.com/doc/16671

    Hope it helps 🙂

    Cheer Satish 🙂

  • RE: Merging schema changes from server db to client db

    Looks like a bad design in first place , points below explain why....

    First schema on Pocket PC SQL CE should have same constraints or rules and identical objects as in...

    Cheer Satish 🙂

  • RE: replication failure "urgent"

    When you restored publisher data did you use the option KEEP REPLICATION to retain the settings, if not afraid you might to re-configure from scratch.

    -Sat

    Cheer Satish 🙂

  • RE: subscription error

    Follow the microsoft article below to manually remove the replication

    http://support.microsoft.com/kb/324401

    hope it helps

    -Sat:-)

    Cheer Satish 🙂

  • RE: 32bit vs 64bit

    - The real difference between using 32 bit vs 64 bit is memory mapping, performance wise it has more benefits as it does not use VM concept of paging as...

    Cheer Satish 🙂

  • RE: 32bit vs 64bit

    1. Could you please post type of packages you are running ?Is this serving a datawarehouse ? if yes how many tables does it populate ?

    2. Briefly describe the...

    Cheer Satish 🙂

  • RE: Multiple Differential Backup Streams

    use the COPY_ONLY option with differential and full backups so that you do not have to break existing schedules

    EG

    Full Backup

    backup database TEST_V

    to disk = 'c:\backup\test_v_full.bak'

    WITH INIT,COPY_ONLY

    Differential backup

    backup database TEST_V

    to disk...

    Cheer Satish 🙂

  • RE: BCP in Logshipping servers

    Need to change the recovery model to FULL if you need logging to happen for all transactions and later propagated by log shipping

    Refer BOL on operations which are not logged...

    Cheer Satish 🙂

  • RE: RAM per User Connections

    Completly understand your circumstances, there used to be days when working as developer making a graphics application the PM allocated less 256 GB RAM and had to work on it.

    Back...

    Cheer Satish 🙂

  • RE: Rebuilding indexes

    Though SQL server provides user friendly tool to create rebuilding tasks , these tasks need to be run only once a week during weekends if posssible when the load on...

    Cheer Satish 🙂

  • RE: User connections in sql server 2005

    Are you planning workload test or benchmark test for new application in production ?

    🙂

    Cheer Satish 🙂

  • RE: Empty table taking a lot of space

    Going by the DBCC output you mention in you post you have no indexes on the table and is usually referred to as heap. This output can be ignored for...

    Cheer Satish 🙂

  • RE: SQL Server Logs

    one way to recycle logs is scheduling the script below once a week,

    Exec sp_cycle_errorlog

    -:-)

    Cheer Satish 🙂

Viewing 15 posts - 61 through 75 (of 102 total)