Viewing 15 posts - 7,351 through 7,365 (of 13,881 total)
We have many projects that we run in 2014 Developer mode
What do you mean by this?
April 1, 2016 at 1:12 pm
SQL!$@w$0ME (4/1/2016)
What is the...
April 1, 2016 at 1:06 pm
larry.andrews (3/31/2016)
I'm observing significant performance differences depending on how a child Package is launched.
Scenario 1 : Single Master Package calling Specific Packages
Scenario 2 : ETL...
April 1, 2016 at 5:24 am
Is the file path local to the client, or the server?
March 31, 2016 at 2:03 pm
Very clever indeed. How would this be applied against a column in a table?
With some difficulty. I tried a few ideas & failed. Looking forward to seeing someone else...
March 31, 2016 at 10:42 am
mister.magoo (3/31/2016)
Why aren't you just doing this:
INSERT INTO [Table] (UserID, RefID, NewValue)SELECT UID, RefID, 'Fixed message'
From UserTable
Where <Some condition>.
Exactly what I was wondering.
March 31, 2016 at 8:01 am
Sergiy (3/30/2016)
1. Create a "translation" table:
CREATE TABLE #Mapping (
FromChar NCHAR(1) PRIMARY KEY,
ToChar NCHAR(1)
)
INSERT INTO #Mapping ( FromChar, ToChar )
SELECT 1, 'A'
UNION ALL
SELECT 2, 'B'
UNION ALL
SELECT...
March 31, 2016 at 6:10 am
Kevlarmpowered (3/30/2016)
March 30, 2016 at 11:07 am
Sean Lange (3/30/2016)
Lynn Pettis (3/30/2016)
March 30, 2016 at 9:18 am
Can you elaborate on the conversion rule?
Does every character map to another specific character, or is its position within the string also important?
March 30, 2016 at 9:09 am
sqlfriends (3/29/2016)
But for implementing and upgrading to new environment, just want to know to put ssis on a separate server or on the...
March 29, 2016 at 3:27 pm
ramana3327 (3/29/2016)
It works me in this wayInstead of running as proxy account, you can modify the SQL job enter the password at the commandline. It is working fine for me
This...
March 29, 2016 at 10:45 am
Alan.B (3/29/2016)
You would use AND.
SELECT vend_id, prod_id, pro_priceFROM products
WHERE prod_price <=5
AND vend_id IN (1001, 1002);
Disagree. This requires an OR.
select a from b where condition1
union (should probably be union all)
select a...
March 29, 2016 at 10:36 am
diamondgm (3/29/2016)
TomThomson (3/28/2016)
Eric M Russell (3/28/2016)
The stored procedure I'm currently tasked with refactoring reads like a 20 page short story by Clive Barker.
You have my deepest sympathy.
I wrote some of...
March 29, 2016 at 5:20 am
SQL 2016 (3/28/2016)
SELECT customers.cust_name,
customers.cust_id,
Count(orders.order_num) as num_ord
FROM customers INNER JOIN orders
ON...
March 28, 2016 at 5:40 pm
Viewing 15 posts - 7,351 through 7,365 (of 13,881 total)