Forum Replies Created

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

  • RE: Help with a Server collation setup

    Jpotucek (1/22/2010)


    I am installing a new SQL Server 2005 named instance and I would like the server collation to be SQL_Latin1_General_CP1_CI_AS

    which choices to a check off at setup to get...

  • RE: disk size

    homebrew01 (1/22/2010)


    I use the backup history data in MSDB to look at database growth over time.

    I don't this so this will give you good results. consider the case if...

  • RE: shrinking log file

    jsb12 (1/22/2010)


    To shrink a log file, is it necessary to do a log backup? Can we just use dbcc shrinkfile?

    To shrink a file and give space to OS you have...

  • RE: Replication verification

    Replication monitor is there, if any thing goes wrong, that publication will be marked red if it is out of sync or if replication is failing.

    To me there is no...

  • RE: disk size

    ramyours2003 (1/22/2010)


    i want to determine the disk sizes whether to increase or not . as we are facing the backup jobs failed due to low disk space . on...

  • RE: SHOW PLAN

    you can grant showplan permissions to public in model database.

    If a database is created then all users by default will be having permissions to view showplan.

    If a database is restored...

  • RE: temp db relocation

    SD1999 (1/21/2010)


    i found solution.....

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

    the only way to change 'initial size' for tempdb is

    to shut down sql server

    connect via cmd using sqlservr -c -f

    Connect to SQL Server...

  • RE: temp db relocation

    SD1999 (1/21/2010)


    but this is my point.....

    current allocated size is 1000 mb

    and i want to split it to 4 256 mb

    i will create 3 more data files later on...

  • RE: SQL Agent job failed

    Jack Corbett (1/21/2010)


    Sounds like a user had been removed from the server and owned the job. I'd recommend changing the owner to sa or creating a user just used...

  • RE: temp db relocation

    SD1999 (1/21/2010)


    Thank you....

    So basicaly when I'm specifying the new location for a tempdb datafile

    I can specify a new size for that file at the same time in the same script...

  • RE: temp db relocation

    I have a few questions:

    1. How do I specify a new tempdb datafile size?

    You can make use of size parameter in the create\alter database command .

    For example

    create database <dbname>...

  • RE: How to find the size of the table.

    Sourav-657741 (1/21/2010)


    Hello Experts

    I am willing to know if there is any T-SQL query available to find out the size of the table.

    This is the query

    select object_name(s2.id) as TableName,(sum(s1.reserved*8) )TableSize_In_KB,sum(s1.rowcnt)...

  • RE: Logshipping restore not working???

    tvantonder-992012 (1/13/2010)


    That was my first thought aswell. I did check it again and there is no missing log file. Why is the system alowing me te redo a restore that...

  • RE: Flagging BCP Operation

    Hi Jeff and Steve,

    Happy New Year.

    Coming back to this topic. My task is to just to port the data from flat file most likely. So once I port...

  • RE: Flagging BCP Operation

    Steve Jones - Editor (12/31/2009)


    If you use BULK INSERT, you could check the table afterwards. I guess with bcp you could do the same. run a query and determine if...

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