Viewing 15 posts - 1,561 through 1,575 (of 1,988 total)
Is there a particular reason why your developers want to do this, some weird security reasons that make creating multiple procedures an issue? Or do they think it's just...
September 16, 2015 at 9:42 am
jonathanm 4432 (9/11/2015)
BULK INSERT [ThomasSci].[dbo].[DONNAWESNERINP]
FROM '\\111.17.10.23\global$\Stocking_Request\_macro\WESNERINPUT.txt';
GO
and here is the error message i get:
Msg 4861, Level 16, State 1, Line 1
Cannot bulk load because the...
September 11, 2015 at 10:13 am
Eirikur Eiriksson (9/11/2015)
Mike Sofen-356112 (9/11/2015)
Eirikur Eiriksson (9/11/2015)
September 11, 2015 at 9:29 am
djj (9/11/2015)
BWFC (9/11/2015)
Ed Wagner (9/11/2015)
Eirikur Eiriksson (9/11/2015)
anthony.green (9/11/2015)
whereisSQL? (9/10/2015)
Ed Wagner (9/10/2015)
DonlSimpson (9/10/2015)
Ed Wagner (9/10/2015)
djj (9/10/2015)
Ed Wagner (9/10/2015)
whereisSQL? (9/10/2015)
Luis Cazares (9/10/2015)
UniverseHe-Man
Conan
Sword
Katana
Samurai
Shogun
Shaolin
Monastery
Hermetic
Seal
On/Off
Wax
Pizza
September 11, 2015 at 8:55 am
/shrug I consider an ERD a decent high level documentation tool but if I want to really know what's going on I'll look at the database and more importantly the...
September 11, 2015 at 7:56 am
It doesn't look like you need the subqueries at all?
SELECT
L.Loanid
,B.FirstMiddleName AS First1
,B.LastName AS Last1
,B_TWO.FirstName AS First2
,B_TWO.LastName AS Last2
,MA.AddressLine1
,MA.AddressLine2
,MA.City
,MA.State
,MA.Zip
FROM Loan L
LEFT JOIN Status As S on S.LoanID = L.LoanID
LEFT...
September 10, 2015 at 9:08 am
Just out of curiosity are all your clients using the same version of whatever app they are using to connect to the database?
September 10, 2015 at 8:21 am
eccentricDBA (9/9/2015)
BWFC (9/9/2015)
Eirikur Eiriksson (9/9/2015)
whereisSQL? (9/9/2015)
ClassyGlossy
Magazine
cartridge
Cartilage
September 9, 2015 at 8:48 am
You can run multiple dataflows in parallel in the same package but as has been said it depends on complexity and dependencies and performance issues.
September 4, 2015 at 10:33 am
call.copse (9/3/2015)
ZZartin (9/2/2015)
RonKyle (9/2/2015)
I guess why I find this topic so interesting is that I keep hearing this "the consequences will dire" statement about not using foreign keys and...
September 3, 2015 at 7:37 am
RonKyle (9/2/2015)
I guess why I find this topic so interesting is that I keep hearing this "the consequences will dire" statement about not using foreign keys and I just...
September 2, 2015 at 8:18 am
David.Poole (9/2/2015)
September 2, 2015 at 7:26 am
How is this procedure going to be called, will it be run manually from SSMS bcp and powershell would both be command line tools would you run it manually there?...
September 1, 2015 at 2:00 pm
Steve Jones - SSC Editor (9/1/2015)
Passwords: http://www.pcworld.com/article/2978316/security/tired-of-memorizing-passwords-a-turing-award-winner-came-up-with-this-algorithmic-trick.html
Now if only all websites used the same algorithm to determine whether a password is strong enough.....
September 1, 2015 at 12:02 pm
Viewing 15 posts - 1,561 through 1,575 (of 1,988 total)