Viewing 15 posts - 1 through 15 (of 63 total)
Hi John,
I've unpivoted NULLs quite successfully before. It just takes a value column that is NULLable to do it.
And I'm a little concerned about your use of varchar(255) rather than...
April 22, 2014 at 5:43 pm
When I did software engineering at university (2001-2005), we learnt C for networking, SQL for database theory, and Java for concurrency. We also learnt Eiffel and design-by-contract, which was a...
August 15, 2012 at 6:51 pm
I think you can Copy and Paste the connections XML between packages to speed up the process.
Otherwise, you'll just have to put up with the extra connections.
June 10, 2010 at 8:07 pm
I was trying to find an article by name and date - and the articles were roughly in date order. Unfortunately, searching by date didn't work.
April 15, 2010 at 5:43 pm
I imagine that the AES-126 bit answer is a typo.
Can we get it fixed to AES-128 bit?
March 29, 2010 at 2:57 pm
joeroshan (12/3/2009)
Tim Wilson-Brown (12/3/2009)
The big question is - what happens when there are 5 salespeople?Tim, what you suggested will work for 5 people also, I think.
...
I guess I should...
December 6, 2009 at 2:42 pm
CASE WHEN (id+3)%4=0 THEN 1
WHEN (id+2)%4=0 THEN 2
WHEN (id+1)%4=0 THEN 3
...
December 3, 2009 at 4:02 pm
Someguy (9/23/2009)
September 23, 2009 at 4:31 pm
Perhaps you should look at the TransactionOption and IsolationLevel properties in SSIS (2005).
They seem to be what you're after to:
* Use SSIS
* Prevent Users from reading incomplete data
May 12, 2009 at 9:08 pm
pedro.ribeiro (4/16/2009)
Thank you very much for all the advices.
I made it, other way....
I have created the table (bulk_contribuintesest), taht the view needs to be constructed.
Then, i crate...
April 16, 2009 at 4:44 pm
pedro.ribeiro (4/13/2009)
I have the t-sql below.
This t-sql is generating an error, because i don't have the tables:
bulk_contribuintesest
bulk_contribuintee
bulk_contribuinteinst
If i have the create of a view inside...
April 15, 2009 at 5:29 pm
xgcmcbain (4/7/2009)
April 8, 2009 at 4:55 pm
xgcmcbain (4/7/2009)
as long as i row_number works in a where statment thats golden thank u
You'll have to wrap it in a CTE or Join Subquery to use it in the...
April 7, 2009 at 6:40 pm
xgcmcbain (4/6/2009)
Tim Wilson-Brown (4/6/2009)
xgcmcbain (4/6/2009)
why would an insert be rolled back? its just a basic insert
Because you have duplicates in your import files 🙂
(See post http://www.sqlservercentral.com/Forums/Topic690671-338-1.aspx)
Every time you load a...
April 6, 2009 at 8:05 pm
sayfrend (4/6/2009)
Tim Wilson-Brown (4/6/2009)
Every time you load a duplicate, the insert gets rolled back, but the identity value is gone forever...
Actually SET IDENTITY_INSERT ON would let you insert values into...
April 6, 2009 at 7:17 pm
Viewing 15 posts - 1 through 15 (of 63 total)