Viewing 15 posts - 8,026 through 8,040 (of 13,882 total)
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
PSB (10/14/2015)
CREATE TABLE #ListString
(
JobNo VARCHAR(10),
InvNo VARCHAR(MAX),
Address1 VARCHAR(100)
)
INSERT INTO #ListString ( JobNo, InvNo,Address1 )
SELECT '3079', 'abc' ,'Add1'
UNION ALL
SELECT '3079',...
October 14, 2015 at 9:40 am
Use the FOR XML PATH technique described here.
October 14, 2015 at 8:58 am
PB_BI (10/14/2015)
October 14, 2015 at 5:20 am
And now I just got this warning in Gmail, for a "SQLServerCentral.com - New Topic " e-mail:
This message could be a scam. The sender's account may have been compromised and...
October 14, 2015 at 2:50 am
Felix Pamittan (10/14/2015)
Lowell (10/5/2015)
they added code that insta-deletes anything Celko posts(thank you for that!)
So that's why I received an email saying:
A new reply has been added by CELKO to...
October 14, 2015 at 2:13 am
The error message does not say what went wrong, so I don't know whether anyone can help much without more information.
Did you check whether you have sufficient disk space for...
October 14, 2015 at 1:14 am
botta.5283 (10/14/2015)
please find the below is my requirement
how to fetch data from oracle database in sql server 2014
example
----------
oracle schema :t1
sql server :t2
now...
October 14, 2015 at 12:43 am
rajarajansudar (10/13/2015)
if ( System ID =="RE2")
{
Account_num +"-"+ coulum
}
i wrote in SSIS like below
System ID ?...
October 13, 2015 at 9:39 am
Sounds like something is setting this value.
If you click once on the CM and then get properties, can you check the 'Expressions' property – is there anything in there?
October 13, 2015 at 3:55 am
Viewing 15 posts - 8,026 through 8,040 (of 13,882 total)