Viewing 15 posts - 856 through 870 (of 1,251 total)
Am I being cynical in thinking that 'cracked it' means 'can't be bothered to provide sample data'?
http://www.sqlservercentral.com/Forums/FindPost1625755.aspx
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 15, 2014 at 4:47 am
Have a look the example below.
create table #EventHeader(
HistoryIDint primary keynot null
,DateTimeHappened datetimenot null
)
create table #EventDetail
(
HistoryIDint
,DetailIDint primary key not null
,DateTimeProcessed datetimenot null
,ProcessedBy varchar(20)not null
)
insert into #EventHeader
select 100001, '2014-07-23...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 15, 2014 at 3:42 am
paul.knibbs (10/15/2014)
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 15, 2014 at 2:11 am
On occasions when particular managers have said something's urgent my first thought has been 'I'll be the judge of that'. Often a quick phone call has revealed that the...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 15, 2014 at 1:58 am
Mauricio N (10/15/2014)
Same error: Msg 156, Level 15, State 1, Procedure my_sp, Line 2Incorrect syntax near the keyword 'FROM'.
+1
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 15, 2014 at 1:26 am
How did you fix it in the end?
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 7:53 am
It's a start 🙂 Could you post examples of the data in your tables next please? Have a look at this article
http://www.sqlservercentral.com/articles/Best+Practices/61537/ and it'll show you how. As...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 6:51 am
As I've said before, please can you post some sample data. It will make it much easier to see where there might be a problem.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 6:39 am
I wish I was. It's not installed on this server and neither can I actually install it. I'm doing this direct into SQL Server Agent.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 6:21 am
Will not do or does not do?
Could you post some sample data please? It will make it much easier to establish what's wrong if we've got an idea what...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 5:47 am
The owner of the job is me and the job is run by svc_xxxxr2Agent. Both accounts have sa access and datareader and datawriter enabled.
It also seems that it's one...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 4:38 am
Hi Imran,
welcome to the forum.
Try joining to the General Ledger Table with a LEFT join. That's only a guess mind you. If you go to the link on...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 4:14 am
Ed Wagner (10/13/2014)
djj (10/13/2014)
Ed Wagner (10/13/2014)
SQLRNNR (10/13/2014)
djj (10/13/2014)
SQLRNNR (10/13/2014)
DanishPastry
creme
Brulee
Fire
Torch
Singer
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 14, 2014 at 1:17 am
It should just be O'Gara, there's quite a few names with Name #D in the list as it turns out.
The good news is it appears it's not a...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 10, 2014 at 1:03 pm
Eric M Russell (10/10/2014)
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
October 10, 2014 at 8:00 am
Viewing 15 posts - 856 through 870 (of 1,251 total)