Viewing 15 posts - 6,376 through 6,390 (of 13,877 total)
BowlOfCereal (11/7/2016)
Looking for some quick help with a bit of SQL. The best way I can describe it is that I'm trying to add 1 to the least...
November 7, 2016 at 10:56 am
MyDoggieJessie (11/7/2016)
November 7, 2016 at 8:42 am
November 7, 2016 at 8:20 am
MyDoggieJessie (11/7/2016)
The table design is horrendous...in fact this is a rather small table 🙂 It's a...
November 7, 2016 at 8:10 am
John Mitchell-245523 (11/7/2016)
SteveD SQL (11/7/2016)
I included the insert because I have been asked in the past to provide the data structures/processes.
Steve
Yes, you were right to do so. I just...
November 7, 2016 at 6:08 am
Eirikur Eiriksson (11/7/2016)
rajnoha (11/7/2016)
Yes, it's an explanation. But if the procedure call without section TRY / CATCH then no transaction is open - Example 1.
When wrapped in a try/catch, the...
November 7, 2016 at 5:28 am
Take a look at this link[/url]. You'll see that checking the Keep Nulls option, in conjunction with table-level default constraints, should get you what you need.
Alternatively, if you cannot set...
November 7, 2016 at 5:24 am
berryber (11/5/2016)
Situation:
I have a package which runs over a selection...
November 6, 2016 at 1:36 pm
7036golf (11/4/2016)
thank you is there any way to fix code for 2008? if this just a one joint...
From memory, there was quite a big change in file formats between 2008...
November 4, 2016 at 1:09 pm
7036golf (11/4/2016)
right, there are 5 pages of comments, on which one?.... the information like this should be stated in the posted article itself as it is important to know (pre-requisites)
I...
November 4, 2016 at 12:55 pm
7036golf (11/4/2016)
SSIS Build Number 2796; Ver Major 10, Minor 50.
Which is 2008, I think. The code was built for 2012, as has been mentioned in earlier comments.
November 4, 2016 at 12:44 pm
7036golf (11/4/2016)
pchelptx (12/4/2015)
- no data in tables and the errors below
---------------Get all connections-----------------------------------
---------------Get all connections-----------------------------------
------------------------Get all variable details-------------------------------------
------------------------Get all variable details-------------------------------------
------------------------Get all...
November 4, 2016 at 12:11 pm
Try this. Notice how the count is zero for the column containing all NULLs
IF OBJECT_ID('tempdb..#tmp', 'U') IS NOT NULL
DROP TABLE #tmp;
CREATE TABLE #tmp
(
...
November 4, 2016 at 12:00 pm
November 4, 2016 at 11:03 am
Viewing 15 posts - 6,376 through 6,390 (of 13,877 total)