VBscript hacks for DTS packages
This article is about using VBscript hacks to overcome two limitations of DTS packages.
This article is about using VBscript hacks to overcome two limitations of DTS packages.
Join BI Architect Bill Pearson in an introduction to the intrinsic MEMBER_KEY property. In hands-on exercises, we gain exposure to the use of the property in generating simple lists, as well as datasets to support report parameter picklists.
The Microsoft Jet 4.0 relational database engine utilizes character sorting tables when creating and querying field indexes made up of character data. Two Microsoft Windows APIs are generally utilized for this functionality:
Steve Jones talks about data mining in the drug industry and the advantages of cheap software.
Steve Jones will be attending the Business of Software conference in September and gives a few reasons why this is an interesting topic to him.
Steve Jones talks about data mining in the drug industry and the advantages of cheap software.
How many times have you wanted to know which child or grandchild records exists for a parent record? SSMS doesn't make this information easy to find beyond one level. New author Narasimhan Jayachandran brings us an article and a recursive solution.
Do you have an MBA? If so, has it helped you? Is it worth getting one for someone in IT? Ted Pin comments.
For this Friday, Steve Jones has a poll about life outside of work and how much you tinker with things.
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers