Viewing 15 posts - 316 through 330 (of 455 total)
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...
July 12, 2013 at 5:23 pm
1. sys.databases
2,3. msdb..backupset
4. fileproperty(name, 'spaceused')/128 from sys.database_files -- MB
July 10, 2013 at 7:37 am
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.
July 9, 2013 at 2:22 pm
the host is from where you are running this sp_who2. You can find it by select @@servernamee
July 9, 2013 at 1:57 pm
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...
July 8, 2013 at 1:39 pm
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...
July 8, 2013 at 1:25 pm
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),...
June 28, 2013 at 6:17 pm
bcp is not supposed to show column headers. Try sqlcmd instead.
June 27, 2013 at 3:32 pm
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...
June 25, 2013 at 1:44 pm
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...
June 25, 2013 at 1:38 pm
It also could happen as a result of blockings. Check if application's S.P. are blocked during their execution.
June 25, 2013 at 1:31 pm
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...
June 24, 2013 at 3:02 pm
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...
June 4, 2013 at 3:30 pm
Try to experiment by choosing different coulmn(s) for that clustered index.
June 4, 2013 at 3:27 pm
Viewing 15 posts - 316 through 330 (of 455 total)