Viewing 15 posts - 8,011 through 8,025 (of 13,876 total)
abhilashdk2013 52858 (10/19/2015)
Thank you for the reply. I was just trying out as I am just learning. I will learn Script Task and try to get the file name from...
October 19, 2015 at 1:54 am
abhilashdk2013 52858 (10/19/2015)
I am new to SSIS. I created a simple package that extracts data from a table and copies that data to a text file. It works well.
Now...
October 19, 2015 at 12:54 am
6660999 (10/17/2015)
I have several import processes running across around 20- 30 files. These are all...
October 18, 2015 at 8:25 am
Dropping your temp table is easier like this
if object_id('tempdb..#TempB', 'U') is not null
drop table #TempB
October 16, 2015 at 5:28 am
I can't remember whether GO is valid inside an ExecuteSQL task, as it's not a valid SQL statement.
October 16, 2015 at 5:25 am
_watching (10/15/2015)
Matt Miller (#4) (10/15/2015)
ChrisM@Work (10/15/2015)
_watching (10/14/2015)
October 16, 2015 at 12:25 am
happygeek (10/15/2015)
I hope I have the correct wording for this question, but here goes:Is it time to create a forum for SQL 2016 questions?
Wording looks pretty good to me:-)
October 16, 2015 at 12:12 am
Luis Cazares (10/15/2015)
You can use either the SQL Server Express Edition which is free. It has several limitations, but for simple use, it should be fine.
Where is the OR to...
October 15, 2015 at 10:12 am
fernando.arias (10/15/2015)
To be sure, wouldn't this work as well? (PARTITION BY namn ORDER BY Säsong) since namn (the name) doesn't change, but tröjnummer (which is the number on their sweaters)...
October 15, 2015 at 8:59 am
Based on that screen shot, if you change your PARTITION BY to this, it should work
(PARTITION BY TROJNUMMER ORDER BY SASONG DESC)
(obviously, the various accented characters need to be substituted...
October 15, 2015 at 8:33 am
SELECT *
INTO Newtable
creates a permanent table called Newtable. So if you run it again when the table already exists, you get an error because the table cannot be created again.
If...
October 15, 2015 at 5:13 am
Kristen-173977 (10/15/2015)
fernando.arias (10/15/2015)
Msg 336, Level 15, State 1, Line 5
Incorrect syntax near 'Fernhl'. If this is intended to be a common table expression, you...
October 15, 2015 at 4:59 am
fernando.arias (10/15/2015)
I am having some problems coding with sql. Very new at this. I'm using sql server 2014.
Anyway, I want to clean my table which have seveal duplicates in the...
October 15, 2015 at 1:28 am
What version of SSIS are you using?
October 14, 2015 at 10:11 pm
I run the exact setup you describe and it works fine. No issues.
October 14, 2015 at 9:57 pm
Viewing 15 posts - 8,011 through 8,025 (of 13,876 total)