Viewing 15 posts - 1,531 through 1,545 (of 4,272 total)
smoo (5/2/2011)
Unfortunately the people in charge of our production applications frown upon keeping staging tables on the same database/server.
In those cases I might consider creating a persistent temp table in...
May 16, 2011 at 10:46 am
Definitive answer!
1. SQL 2008 and SQL 2008R2 Standard Edition WILL install on a cluster that contains more than 2 nodes.
2. SQL 2008 and SQL 2008R2 Standard Edition setup will operate...
May 16, 2011 at 10:39 am
Absolutely. You need to look at the for-each loop component. As well as you will use an expression to change the login information. I hope (pray?) that...
May 16, 2011 at 10:28 am
I would surmise that you are running the package under a different user than is was created with. The default protection mode for packages causes saved credentials to be...
May 16, 2011 at 10:26 am
Simple Answer, you can't realy, MAYBE if they were on your email system and some DRM was in place.
If you have an email it can be easily disected...
April 29, 2011 at 2:00 pm
Perry,
That is what I thought would happen. I have installed many enterprise edition SQL boxes and I figured the process was the same. I just didn't know if...
April 29, 2011 at 12:34 pm
Oh well.. I released a SQL CLR file function library on codeplex in march 2011. It is at:
http://nclsqlclrfile.codeplex.com/%5B/url%5D
Let me know what you think, what is wrong with it, and...
April 29, 2011 at 7:37 am
Really.. Hm... I didn't, but it could be the code you were using, good to know..
CEWII
April 28, 2011 at 12:55 pm
Sean,
I have considered the multiple 2-node clusters but for cost reasons it may be too much. Thanks for the thought.
CEWII
April 28, 2011 at 7:51 am
Use an EXEC SQL task to fill the count variable and you should be able to leave the init express alone.
CEWII
April 27, 2011 at 2:26 pm
It is related to something called CONCAT_NULL_YIELDS_NULL, which basically means if you add up values and ANY of them are NULL then the result is NULL.
Here is the query two...
April 27, 2011 at 1:28 pm
Assuming the the bracketed names are fields:
SELECT tblApplicant.ApplicantID, [LastName] + ', ' + [Suffix] + ', ' + [FirstName] + ' ' + [MiddleName] + '.' AS [Full Name]
FROM ...
April 27, 2011 at 12:41 pm
For most jobs I usually set the owner to sa, meaning run it in the context of the system and sa never leaves the company. As a precaution, I...
April 27, 2011 at 12:36 pm
Sean,
The install will not let you install two instances in the same cluster group, as far as I know it is not a supported configuration. You *might* be able...
April 27, 2011 at 12:08 pm
I think this whole approach is overkill, you can do it with an EXEC SQL task using input and output variable mapping. About the only code needed is the...
April 27, 2011 at 11:58 am
Viewing 15 posts - 1,531 through 1,545 (of 4,272 total)