Forum Replies Created

Viewing 15 posts - 316 through 330 (of 455 total)

  • RE: How is the job market in the NYC area?

    Yes, the DBA/DB development market in NYC is tough, and majority of openings are consulting/contractors/temp. But the good news is that pay is usually higher than in most of other...

  • RE: script

    1. sys.databases

    2,3. msdb..backupset

    4. fileproperty(name, 'spaceused')/128 from sys.database_files -- MB

  • RE: Hostname is a dot in sp_who2

    That's funny, I never knew about such trick, thanks Lowell. But why Microsoft allows to change them at all? It can be really misleading.

  • RE: Hostname is a dot in sp_who2

    the host is from where you are running this sp_who2. You can find it by select @@servernamee

  • RE: log differences

    Publisher database (I guess you call it General) must be in full recovery model, so txn log will always grow until you will back it up.

    Subscriber database must be in...

  • RE: attach all dbs in a folder

    You should have created attach script BEFORE detaching databases. If you still have backup of master database, restore it somewhere under different name, and create "ATTACH" script by joining sys.databases...

  • RE: bcp export problem

    Queryout is not a keyword in sqlcmd. You should use -Q "select * from table".

    -c (batch terminator) and -t (timeout) are not necessary.

    But what is necessary is -S (server name),...

  • RE: bcp export problem

    bcp is not supposed to show column headers. Try sqlcmd instead.

  • RE: Replication

    There is good Stairway to Replication right on this site:

    http://www.sqlservercentral.com/stairway/72401/

  • RE: SP producing an impossible error

    Check with sys.sql_modules whether your new S.P. code indeed in your database, not in master or any other databases. Sometimes during deployment people tend to omit USE...

  • RE: How much Ram required.

    It sounds like your home PC. And apparently not SQL Server experiences the issue with memory, but your other apps running on same machine.

    SQL Server will grab nearly all...

  • RE: unexpected Error occured in the database server Time out expired

    It also could happen as a result of blockings. Check if application's S.P. are blocked during their execution.

  • RE: Errors in SQL Server

    It sounds like your shop may have build some custom error-hadling log - which simply a table - where all errors from begin catch / end catch blocks are being...

  • RE: Database growth

    It returns in 8k pages. To get it in MB, devide by 128.

    I see that number of pages are dirrefent. It is possible that one of them has tables, indexes...

  • RE: Clustered index creating performance issues

    Try to experiment by choosing different coulmn(s) for that clustered index.

Viewing 15 posts - 316 through 330 (of 455 total)