Viewing 15 posts - 571 through 585 (of 927 total)
Msg 207, Level 16, State 1, Line 1
Invalid column name 'pmDescription'.
Msg 207, Level 16, State 1, Line 1
Invalid column name 'smDescription'.
Msg 209, Level 16, State 1, Line 1
Ambiguous column name...
June 19, 2014 at 6:54 am
crazy_new (6/19/2014)
June 19, 2014 at 6:31 am
crazy_new (6/19/2014)
June 19, 2014 at 6:28 am
you can check the following links
June 19, 2014 at 5:36 am
you need to convert your comparison dates instead of converting the date in the table
Like this:
declare @a varchar(12) = '14-03-2013'
select
@a, convert(date,substring(@a,charindex('-',@a)+1,2)+'/'+
left(@a,charindex('-',@a)-1)+'/'+
right(@a,charindex('-',reverse(@a))-1))
June 19, 2014 at 5:32 am
Following is the understanding
Cat_Transaction.ID should not be the part of the budget_line.Ref_Number Per Case_ID. all these rows needed to inserted into the budget_Line table.
if so then following is the...
June 19, 2014 at 4:56 am
First of all how can this query will know ? the value will be 121
SELECT
bl.CASE_ID
FROM
Patricia.dbo.BUDGET_LINE bl
JOIN cat_transaction ct ON bl.EXT_REFERENCE = ct.id
WHERE
ct.CASE_ID = bl.CASE_ID
what is your logic to get this...
June 19, 2014 at 4:23 am
Nice point mentioned by GilaMonster
but nice question Andy. Thanks for sharing !!!
June 19, 2014 at 3:45 am
You need to check what select query is returning. Select query should only return one result set. if its more then one then you will get this issue.
one other possibility...
June 19, 2014 at 3:39 am
is it me or ...
answer however, taught me a new thing, never work on SQL Azure 🙂
June 18, 2014 at 5:48 am
the trouble is that each iteration does the select statement and therfore it works really s-l-o-w
I thoght about command line Bulk Copy Program (BCP) but i'm not sure it suits...
June 3, 2014 at 7:02 am
do you need the old data, that is if you have created a file 1009.txt before,
in the new file do u need the old data + New data or...
June 3, 2014 at 6:22 am
Hmmmm you can set in sql server, but in mysql u cannot.
this might help you.
http://stackoverflow.com/questions/1202919/mysql-dayofweek-my-week-begins-with-monday
May 23, 2014 at 12:28 am
lclaassen (5/22/2014)
I'm just a little confused, when running the query
SELECT WEEKDAY(CURDATE( )) FROM dual
the current date being Friday, 23 May 2014, the weekday number returned is 4. Correct...
May 22, 2014 at 11:57 pm
Viewing 15 posts - 571 through 585 (of 927 total)