MacOSXHints.com
via Reduce CPU usage by removing video files from the Desktop.
The Dorky and Skewed World of Me
For the most part, I stick things here I don't want to forget, or things that I find might be useful to others. Thanks for visiting...
MacOSXHints.com
jdbc:oracle:thin:{schema name}/{password}@{hostname}:1521:{instance name}
Allow auto-accept :
defaults write com.apple.FaceTime AutoAcceptInvites -bool YES
Auto-accept FaceTime calls from a specified email:
defaults write com.apple.FaceTime AutoAcceptInvitesFrom -array-add email@address.com
Auto-accept FaceTime calls from a specified phone number:
defaults write com.apple.FaceTime AutoAcceptInvitesFrom -array-add +14085551212
Mountain Lion no longer includes X11. You’ll have to use X-Quartz.
MacOSXHints.com
Resetting the SA password
If you need access to the database, you can reset the SA password using the following commands from a command prompt (cmd):
sqlcmd –S SQLSERVER\INSTANCE
Once in the interface for sqlcmd, which is represented by a 1>, type the following on separate lines:
sp_password @new = ’newpassword’, @loginame = ‘sa’
go
exit
Just so you know, the @loginame procedure does have only one “n”.
Unlocking the SA user
If you have tried to access the database too many times with the wrong password, the SA account may be locked out. Do the following to unlock the account from a command prompt (cmd):
sqlcmd –S SQLSERVER\INSTANCE
Once in the interface for sqlcmd, which is represented by a 1>, type the following on separate lines:
ALTER LOGIN sa WITH PASSWORD = ‘newpassword’ UNLOCK
go
exit
Full Article HERE.
MacOSXHints.com
Create a property using a Groovy Script test step with the following line :
def property = java.util.UUID.randomUUID()
or let SOAPUI parse it in-line :
${=java.util.UUID.randomUUID()}