Forum Replies Created

Viewing 15 posts - 16 through 30 (of 46 total)

  • RE: Replication question

    ok how big is your database? are you going to be replicating everything or a sub section of the database?

    I think you are better using Snapshot replication based on your...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Restart SQL Server to create space on disk

    How to Shrink TempDB

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Creating a Copy of Production to a Test Database

    I think this is being made to look more complicated than it is...

    Create a blank test database - a suggestion would be to not call it production_nameTest as they...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: MSSQL 2005 database on MSSQL 2008 server

    or leave the compatibility to 90?

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: How to not show duplicates?

    Rather than working around the problem why not just fix up the data?

    Is there a primary Key on the table as from the 2 rows youve provided the only key...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Reinitializing Replication using t-sql

    try this:

    EXEC sp_replicationdboption @dbname = N'MCSTST7', @optname = N'publish', @value = N'True'

    If not, i would wipe the whole replication by right clicking the publication in SSMS and deleting it. This...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Replication question

    Ok several questions above but i will try to disect a little. Just as a side point - why dont you create a test instance(s) and try out your questions?

    answer...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: The process could not execute 'sp_replcmds'

    Can you give more details about your setup?

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: TempDB - TempDev will not shrink - Help!

    @david-2 Levy - thanks for keeping this topic alive and for your suggestion. I will try this when(!) i come across the issue again.

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Using SSMS 2005 to connect to 2008 database

    Yea - this is what i have suggested - SP3 - will take the user to 9.00.4035 which is good enough and tested client version for using sql 2008 instances.

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: Using SSMS 2005 to connect to 2008 database

    Thanks.. i must be going blind. thought i checked Help tab and couldnt find the 'About' section.

    His version is base 2005 - 9.00.1399 so i think the client tools need...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: TempDB - TempDev will not shrink - Help!

    use tempdb

    backup log tempdb WITH NO_LOG

    dbcc shrinkfile (templog,0)

    dbcc shrinkfile (tempdev,0)

    The log shrinks fine but the data file doesnt change in size

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: TempDB - TempDev will not shrink - Help!

    USE [tempdb]

    GO

    Checkpoint

    DBCC SHRINKFILE (N'tempdev' , 0, TRUNCATEONLY)

    GO

    This doesnt work for me - ive tried the checkpointing option before.

    Thanks anyway

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: TempDB - TempDev will not shrink - Help!

    Hi,

    I ran updateusage against tempdb and it didnt resolve the minus free space issue.

    Im a bit baffled about it all - a friend mentioned that it may be because the...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

  • RE: TempDB - TempDev will not shrink - Help!

    I know that tempdb can get currupted and i have read the various Ms kb articles. I wouldnt be doing this during the day, but the transaction that caused the...

    My DBA Ramblings - SQL Server | Oracle | MySQL | MongoDB | Access[/url]

Viewing 15 posts - 16 through 30 (of 46 total)