Table is probably included as part of some "schema binded" view. Use attached script to temporary remove schema binding.
Error:
"[Test] failed: (Error) A .NET Framework error occurred during execution of user-defined routine or aggregate "SuppressOutput":
System.Data.SqlClient.SqlException: Object '[dbo].[SomeTable]' cannot be renamed because the object participates in enforced dependencies."
Source on GIT
Thursday, 15 January 2015
Wednesday, 14 May 2014
How to use Ionic framework with Ripple web browser based emulator
http://ripple.incubator.apache.org/
First prepare Android platform:
ionic platform add android ionic build android
Install Ripple emulator with node.js NPM.
npm install -g ripple-emulator
and run it:
ripple emulate --path platforms/android/assets/www
Last step can be also used in ordinary PhoneGap / Cordova project.
Links:
- Ionic Framework
| droid gang (Photo credit: valanzola.t) |
ionic platform add android ionic build android
Install Ripple emulator with node.js NPM.
npm install -g ripple-emulator
and run it:
ripple emulate --path platforms/android/assets/www
Last step can be also used in ordinary PhoneGap / Cordova project.
Links:
- Ionic Framework
Labels:
android,
AngularJS,
Emulator,
Handhelds,
Ionic,
IOS,
javascript,
Mobile app,
PhoneGap
Thursday, 1 May 2014
Backbone model sample (javascript)
- attributes
- setting default values
- getting list of attributes
- constructor
- validation
- methods
- converting to JSON
Additional resources:
Labels:
Backbone,
Backbone.js,
business logic,
Document Object Model,
javascript,
JQuery,
JSON,
model,
Model–view–controller,
Models,
User interface
Friday, 25 April 2014
Chocolatey is incompatible with version 2.1.31022.9038 - How to update nuget client in Chocolatey
I become a big fun of Chocolatey lately! :) While installing some tools I received following error:
Sollution:
Chocolatey (v0.9.8.20) is installing wget and dependencies. By installing you accept the license for wget and each dependency you are installing. The schema version of 'Microsoft.AspNet.Mvc' is incompatible with version 2.1.31022.9038 of NuGet. Please upgrade NuGet to the latest version from http://go.microsoft.com/fwlink/?LinkId=213942.
Sollution:
cd C:\Chocolatey\chocolateyinstall nuget update -Self
And it should work!
Thursday, 22 August 2013
Powershell: Create Folder/Directory if doesn't exists
Simple script for creating new folders.
# Create folder if it doesn't exists
function CreteFolder([String]$folderPath)
{
if ((Test-Path $folderPath) -ne $True)
{ New-Item $folderPath -type directory }
}
# Create folder if it doesn't exists
function CreteFolder([String]$folderPath)
{
if ((Test-Path $folderPath) -ne $True)
{ New-Item $folderPath -type directory }
}
Thursday, 18 July 2013
Powershell: How to get members of AD security group
all - AD security group
Get-ADGroupMember all
Displays only "usernames":
Get-ADGroupMember all | Select SamAccountName
Snippet for Iterating through all users
$Users=Get-ADGroupMember all | Select SamAccountName
foreach ($User in $Users)
{
Write-Host $User.SamAccountName
}
Get-ADGroupMember all
Displays only "usernames":
Get-ADGroupMember all | Select SamAccountName
Snippet for Iterating through all users
$Users=Get-ADGroupMember all | Select SamAccountName
foreach ($User in $Users)
{
Write-Host $User.SamAccountName
}
Saturday, 6 April 2013
Unable to connect to Windows 7 file share
While trying to connect to Windows 7 machine (from Mac or PC) over the network I was constantly receving messages:"Unable to connect"
On "server" machine I noticed following error in event viewer:
Soruce: Srv
Event Id:2017
"The server was unable to allocate from the system nonpaged pool because the server reached the configured limit for nonpaged pool allocations."
Problem occurs when multiple computers are trying to connect to one Windows 7 "server" machine. Do following procedure:
Set the following registry key to ’1':
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\LargeSystemCache
and set the following registry key to ’3':
HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\Size
Restart computer or just "Server" service, fixed! :)
On "server" machine I noticed following error in event viewer:
Soruce: Srv
Event Id:2017
"The server was unable to allocate from the system nonpaged pool because the server reached the configured limit for nonpaged pool allocations."
![]() |
| The server was unable to allocate from the system nonpaged pool because the pool was empty. |
Problem occurs when multiple computers are trying to connect to one Windows 7 "server" machine. Do following procedure:
Set the following registry key to ’1':
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\LargeSystemCache
and set the following registry key to ’3':
HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\Size
Restart computer or just "Server" service, fixed! :)
Subscribe to:
Posts (Atom)

