桃子视频

Categories
Syndication

Pray For Me…I’m Writing the Bible!

Prayer Cat Prays

Well not THE Bible, but rather the ! I’m incredibly excited and proud to say I’ll be one of the primary authors on the 2011 edition (aka “Denali”). Who are the rest of the folks involved on this venture? Check out this great list of authors:

Primary Authors

  • Adam Jorgensen (| )
  • Patrick LeBlanc聽(| )
  • Aaron Nelson聽(| )
  • Denny Cherry聽(| )

Contributing Authors

  • Audrey Hammonds聽(| )
  • Julie Smith聽(| )
  • Scott Klein聽(| )
  • Tim Chapman聽( | )

Lots of exciting new stuff coming down the pipeline with this release of SQL Server so I think I can safely speak for all of us when we say we’re extremely excited to be putting this title together!

Categories
Business Intelligence

Pragmatic Tools Week: Task Factory

If you’ve ever spent any time doing SSIS development work, you’ll eventually come to a point when developing something and you think to yourself “there has GOT to be an easier way of doing this”. We at Pragmatic Works feel the same way so our team of developer monkey ninjas put together a nifty toolset called Task Factory to help ease some of those pains!

Categories
SQLRally Syndication

SQLRally Overdrive: Birds of a Feather Discussions Event

Just wanted to post a quick note/invitation to everyone to come join us on Thursday, May 12th from 5:45-7:00 for the .

We’ll have several tables, each with a dedicated expert in the field hosting conversations. Want to delve into some shop talk about PowerShell? Curious about how Analysis Services are being setup by other folks in the field? Care to swap architecture design ideas about SSIS with others? Well this is the place to do this and more! Here’s the list of folks who have graciously volunteered to host tables at this event:

Mike Davis ( | ) 鈥 SSRS

Grant Fritchey ( | ) – Indexing/Performance Tuning

Adam Jorgensen ( | )- SSAS

Devin Knight ( | ) 鈥 SSIS

Andie Letourneau ( | ) – Women in Technology

Brian Moran ( | )- Professional Development

Jorge Segarra (Blog | ) – Administration

Ed Wilson ( | ) – PowerShell

Categories
Business Intelligence Review Syndication

Pragmatic Tools Week: BIxPress

Much like Tim “The Toolman” Taylor had his themed weeks, we鈥檙e going to do something similar. This week we salute: (play fanfare music here) the . Today we’re going to talk about .

I’ve previously posted on BIxPress and how it helps DBAs out, but the heart of this product is really aimed at making your development quick and easy. Today we’re going to focus on a few things that really make this tool worthwhile by looking at the top 3 features of this product that I really love.

Categories
SQLRally Syndication

SQLRally OverDrive Events!

So you’re going to SQLRally in Orlando next week? Want to take advantage of ALL of the awesome opportunities presented? In addition to all of the amazing training content you’ll see at the event itself, we’re holding some great stuff after-hours on Thursday. We’re calling this !

These are three different panel events being hosted by members of the SQL community. You have your choice of three cool events to choose from:

Birds of a Feather Discussions

Sit down with a group of people who are interested in the same SQL Server and BI topics as you are. Interested in SSIS? Gather with your peers to discuss the problems you鈥檝e encountered and solved. Each table will be moderated by an expert in that area.

Conducting an Interview, Sponsored by OPASS

Conducting an interview can be intimidating and confusing. What makes a good interview? How do you differentiate candidates? This session will consist of 3 short interviews. After the interviews are complete, attendees will discuss how the interviews were conducted. Did the interviewers ask the right questions? Did the interviewers conduct themselves well? Which candidate would you hire and why? Quest SQL Server expert Kevin Kline will moderate the discussion.

Speed Networking, Sponsored by MagicPASS

Do you have trouble meeting people? Need help starting a conversation? Based on the speed-dating model, you鈥檒l spend a few minutes with several different people with a set of pre-defined questions to ask and answer. Take the time to exchange business cards as well. When moderator Kendal Van Dyke says, 鈥淕o!鈥 be ready to make some new contacts.

I’ll be hosting a table at the Birds of a Feather discussions so make sure to swing by and say ‘hi’ and we can talk shop. Just look for the tall guy with the rubber chicken on the table!
Categories
Business Intelligence SQL University Syndication

SQL University: Precedence Constraints

Welcome back, class! In our last class, we setup a parent-child package configuration and showed how you can pass variables between the two in order to complete a unit of work. In today鈥檚 class we鈥檙e going to continue exploring that data load package and take a look at another critical piece of SSIS that you should know about: precedence constraints.

So what exactly are precedence constraints? They are the connectors that link together tasks in the Control Flow, and they define the workflow of your package. When two tasks are tied together with a constraint, the destination task will execute based on two things: The final state of the task that precedes it and special rules you can define on the constraint using specialized expressions.

Constraint Types

You can have different types of constraints between tasks. You can read more about constraints in detail from MSDN article (). I鈥檒l briefly cover each of the constraint types in an abbreviated list and then we鈥檒l discuss how we used these constraints in our parent-child package from our previous lesson.

  • Success 鈥 Workflow will proceed when the preceding container executes successfully. Visually indicated in control flow by a solid green line.
  • Failure 鈥 Workflow will proceed when the preceding container鈥檚 execution results in a failure. Visually indicated in control flow by a solid red line.
  • Completion 鈥 Workflow will proceed when the preceding container鈥檚 execution completes, regardless of success or failure. Visually indicated in control flow by a solid blue line.
  • Expression/Constraint with Logical AND 鈥 Workflow will proceed when specified expression and constraints evaluate to true. Visually indicated in control flow by a solid color line along with a small 鈥榝x鈥 icon next to it. Color of line depends on logical constraint chosen (e.g. success=green, completion=blue).
  • Expression/Constraint with Logical OR 鈥 Workflow will proceed when either the specified expression or the logical constraint (success/failure/completion) evaluates to true. Visually indicated in control flow by a dotted color line along with a small 鈥榝x鈥 icon next to it. Color of line depends on logical constraint chosen (e.g. success=green, completion=blue).

Note: In these screenshots there are labels next to the precedence constraints indicating the type of constraint chosen. This is not a default behavior. To enable this click on Tools menu, go to Options. Under Business Intelligence Designers, go to Integration Services Designers and under the Accessibility section in the General menu, check the box for 鈥楽how precedence constraint labels鈥. This is helpful for folks who are color blind and are not able to differentiate between green/red/blue lines in designer. Big thanks to .

Constraints in Action

Now that we鈥檝e seen the different constraint types, let鈥檚 examine how they鈥檙e used in conjunction with parent-child package setup. Our first use of constraints comes at the top of the child package from the script task to the sequence containers. We鈥檝e used an empty script task as an 鈥渁nchor鈥 task. This is used as a starting point to continue on to the corresponding workflow. As we learned in our last class, we have a variable being passed from our parent package with the value of the name of the file we are currently processing.

In this first example, we鈥檙e going to look at the constraint leading to the sequence containers for the Supplier table. We鈥檝e used and Expression and Constraint here and chosen the value for Success. We鈥檙e also looking at the value of the variable being passed to the child package. For this particular workflow, we are waiting until the value of the variable 鈥楶arent_TblName鈥 is set to 鈥渟upplier鈥. Once both of these situations evaluate as being true, we will execute this container.

Now that we鈥檙e inside our sequence container, we have another set of constraints. Once again we鈥檙e using an empty script task as an 鈥渁nchor鈥 for our precedence constraints. This time we鈥檝e got two possible paths to go down. The first is to execute an Execute SQL task. This task checks for the existence of the table (in this case, the supplier table). If it exists it will drop the table and then recreate it. The other path leads directly to a data flow task which simply loads the table specified from the flat file.

I鈥檝e created another variable on this package called 鈥楢ppendFlag鈥 which is a boolean value. The purpose of this flag is so that you can choose to load the tables with a fresh load from the flat file (the Execute SQL task path) or you can simply append an already existing table鈥檚 data with data (data flow path). The default value of the variable is false.

The first path to the Execute SQL task uses an expression and constraint which is looking at the value of the 鈥楢ppendFlag鈥 variable. In order for us to go down this workflow both value of 鈥楢ppendFlag鈥 must be false AND the previous component executed successfully. The other path from the script task leads directly to the data flow task which actually loads the table. For this path, I鈥檝e set the precedence constraint to look for the value of 鈥楢ppendFlag鈥 to be true. In this path, however, we鈥檝e chosen to use a logical OR. The reason for this being that the Execute SQL task, once complete, also leads to the data flow task. Due to the data flow having two different input paths, we must use the logical OR (if you try to choose logical AND, BIDS will quickly yell at you).

Conclusion

When we bring it all together, we now have a parent-child package that passes variable values. These values are used to execute specific workflows based on the value of the variable passed. Precedence constraints are an extremely helpful and invaluable tool in your SSIS toolkit. Using precedence constraints can help you create very dynamic workflows within your packages.

Categories
Policy Based Management Syndication

Policy-Based Management and Local Password Policy

This post is based on an interesting question/situation that was . The user asked how to create a policy condition that enforces local sql accounts to adhere to password expiration policies.

First off, to create the condition itself is relatively easy. Below I鈥檝e provided the T-SQL code so that you can create the condition that way. I鈥檝e also included a quick list on how to create it via SSMS GUI.

T-SQL method:

Declare @condition_id int
EXEC msdb.dbo.sp_syspolicy_add_condition
    @name=N'Password Policy Enforced', @description=N'', @facet=N'Login',
    @expression=N'<Operator>
  <TypeClass>Bool</TypeClass>
  <OpType>AND</OpType>
  <Count>2</Count>
  <Operator>
    <TypeClass>Bool</TypeClass>
    <OpType>EQ</OpType>
    <Count>2</Count>
    <Attribute>
      <TypeClass>Bool</TypeClass>
      <Name>PasswordExpirationEnabled</Name>
    </Attribute>
    <Function>
      <TypeClass>Bool</TypeClass>
      <FunctionType>True</FunctionType>
      <ReturnType>Bool</ReturnType>
      <Count>0</Count>
    </Function>
  </Operator>
  <Operator>
    <TypeClass>Bool</TypeClass>
    <OpType>EQ</OpType>
    <Count>2</Count>
    <Attribute>
      <TypeClass>Bool</TypeClass>
      <Name>PasswordPolicyEnforced</Name>
    </Attribute>
    <Function>
      <TypeClass>Bool</TypeClass>
      <FunctionType>True</FunctionType>
      <ReturnType>Bool</ReturnType>
      <Count>0</Count>
    </Function>
  </Operator>
</Operator>', @is_name_condition=0, @obj_name=N'',
@condition_id=@condition_id OUTPUT

Select @condition_id

GO

SSMS method:

  1. Under PBM node, right-click conditions folder and select New Condition
  2. Name your new condition something useful
  3. Select Login facet from drop-down menu
  4. Click on field box and select @PasswordExpirationEnabled from properties list
  5. Set the operator value to True
  6. Click on ‘Click here to add clause’ to add another clause to policy
  7. Click on field box and select @PasswordPolicyEnforced from properties list
  8. Set the operator value to True
  9. Click OK. You’ve now just created a new condition!

Now we鈥檙e left with another question: Where does this password policy come from? For details on that you can refer to the Books Online article about it (). If your box is on a domain that has Active Directory policies regarding password expiration, when you select the box for 鈥楨nforce password policy鈥 as well as 鈥楨nforce password expiration鈥, these settings will come from that policy. Don鈥檛 have an Active Directory policy? No problem! If a policy isn鈥檛 provided from Active Directory, Windows then looks to its local security policies for these values.

To see the local values, click on your Start button, then type in 鈥榮ecpol.msc鈥 (don鈥檛 type type the single-quotes). This will open up the Local Security Policy MMC Snap-in. Expand the Account Policies folder and then click on the Password Policy folder. In the right side pane you will see the various password-related options you can set such as Maximum password age or password length.

While policy-based management can help you check whether or not the accounts have the option enabled to enforce the policy checks, Policy-based management itself has not bearing on the Local Security Policy settings. This is something you, as an administrator, will have to set and configure outside of SQL Server.

Categories
Business Intelligence SQL University Syndication

SQL University: Parents Just Don’t Understand

Welcome to the second week of SSIS this semester at SQL University. Today we’re going to talk about the relationship between children and parents. Ever had communication issues with your kids when you ask them to complete聽a chore? When they’re done, wouldn’t it be nice if they always came back and let you know they took what you said, applied it, and completed the job? What does that have to do with SSIS? Read on and find out!