Viewing 15 posts - 4,771 through 4,785 (of 15,381 total)
The problem is in the logic of your trigger. You need to write code that can handle sets of data instead of single rows at a time.
When you do...
May 23, 2014 at 2:30 pm
sharonsql2013 (5/23/2014)
When I do a select SUM(Charges) Charges, Count(PName) Person from Prod
where Pname like 'Mike%'
and Days< 90
It gives me...
May 23, 2014 at 2:26 pm
Steve Jones - SSC Editor (5/23/2014)
GilaMonster (5/23/2014)
http://www.sqlservercentral.com/Forums/FindPost1573887.aspx
He's posting on thread after thread on damaged DBs, missing backups, etc, usually talking garbage and...
May 23, 2014 at 1:04 pm
LOL. Apparently I need to endorse my SSC friends more on LinkedIn.
May 23, 2014 at 1:02 pm
Maddave (5/23/2014)
Just talking this problem over on this forum, I think I have solved it by using a temporary...
May 23, 2014 at 9:49 am
Sure...the title of your thread pretty much gave you the solution.
SELECT ID,
MIN(InternalReference) as MinInternalReference,
MAX(InternalReference) as MaxInternalReference
FROM code
WHERE ParentCode = 'M222'
May 23, 2014 at 9:35 am
PSB (5/23/2014)
If the Order has not been completed yet then it shows as 1969-12-31 19:00:00.000 or much older dates..
Why not use NULL instead of a derived value?
As I asked previously,...
May 23, 2014 at 9:33 am
StarterProgrammer (5/23/2014)
this my stored procedure and I'm sorry about names
No need to apologize about the names to me. The are painful but you are the one who has to...
May 23, 2014 at 9:31 am
Can you try to explain more clearly the desired output? Do you really have orders created yesterday that were completed more than 40 years ago? This would be a lot...
May 23, 2014 at 9:20 am
StarterProgrammer (5/23/2014)
It's yes 🙂 ,but I've used IDENTITY as SET @TrnId = 'SCOPE_IDENTITY', but it doesn't work I don't know how
Can you post the code you are working with?...
May 23, 2014 at 9:11 am
StarterProgrammer (5/23/2014)
May 23, 2014 at 8:58 am
antonela (5/23/2014)
I have to export the records of a table in a .txt file but in a strange way (in a column). For example I have this table with...
May 23, 2014 at 8:42 am
Can you post your sample data in a consumable format? Create table and insert statements.
May 23, 2014 at 8:22 am
viresh29 (5/23/2014)
I am using SSIS to load raw files into database. In my files I have columns Date which has format
1/1/2010 12:00:00 PM.
I want to load this...
May 23, 2014 at 7:30 am
And looking for just
is probably not good enough depending on the source of your data. You also need to find <br /> and <br/>
May 23, 2014 at 7:27 am
Viewing 15 posts - 4,771 through 4,785 (of 15,381 total)