|
|
-
Jacob Sebastian Liked 1 Days ago through Blogs
Changing database options to make it read-only, or taking a database offline? If you are using sp_dboption, your code will not work with SQL Server 2012. Use ALTER DATABASE...SET statement instead....
|
|
|
-
There is five way make Ajax calls with Jquery
load(): Load a piece of html into a container DOM.
$.getJSON(): Load a JSON with GET method.
$.getScript(): Load a JavaScript.
$.get(): Use this if you want...
|
-
Jacob Sebastian Learned 2 Days ago through Just Learned
There is five way make Ajax calls with Jquery
load(): Load a piece of html into a container DOM.
$.getJSON(): Load a JSON with GET method.
$.getScript(): Load a JavaScript.
$.get(): Use this if you want...
|
|
|
|
|
-
Most technology blog posts need to show some sort of code samples to demonstrate/explain something, but we often see code that is correct, but not really handy for a user to try it. I thought of outlining a few things that I learned over period of time....
|
-
Jacob Sebastian Liked 3 Days ago through Blogs
In SSIS Transactions, Not Supported does not always work the way we expect it to. Let us see what is the case and how do we overcome the scenario....
|
-
T-SQL's ISNUMERIC() function has a problem. It can falsely interpret non-numeric letters and symbols (such as D, E, and £), and even tabs (CHAR(9)) as numeric.
...
|
-
Jacob Sebastian Learned 3 Days ago through Just Learned
T-SQL's ISNUMERIC() function has a problem. It can falsely interpret non-numeric letters and symbols (such as D, E, and £), and even tabs (CHAR(9)) as numeric.
...
|