Viewing 15 posts - 6,421 through 6,435 (of 26,490 total)
First, are you using SQL Server 2012 or SQL Server 2005? You have double posted in two different forums.
Second, please don't double post, it fragments answers you may get.
Third,...
July 1, 2014 at 10:25 am
First, you haven't detailed what exactly is wrong.
Second, what have you done to try and resolve the problem?
Third, how does the running total part of all this fit in or...
July 1, 2014 at 10:13 am
I have to agree with Sarah regarding SSC. Some amazing people (Jeff Moden for one) helped kick my learning of SQL Server in to high gear when I became...
June 30, 2014 at 10:57 pm
SQLRNNR (6/30/2014)
David Burrows (6/30/2014)
SQLRNNR (6/30/2014)
David gave him most of the answer already but he didn't try to do anything with it other than say it doesn't work.
Actually Lynn's solution looked...
June 30, 2014 at 9:46 am
Great. Now, be sure you take the time to work through the code and understand what it is doing since you have to support it. If you have...
June 30, 2014 at 7:38 am
How about giving this a shot. You may also be able to run this against all ID_Resource entities at once instead of one at a time.
I'd try it in...
June 29, 2014 at 2:33 pm
Koen Verbeeck (6/29/2014)
Lynn Pettis (6/28/2014)
June 29, 2014 at 9:41 am
Give this a shot:
declare @ProgamCodeIn nvarchar(10);
set @ProgamCodeIn = N'STORE2';
with baseitems as (
select
ipp.ItemID,
ipp.ProgramID,
p.Code,
rn = row_number()...
June 28, 2014 at 3:50 pm
Jeff Moden (6/28/2014)
Lynn Pettis (6/28/2014)
Sana4u (6/28/2014)
Is there a better way to write the following ?? Please view the below comments I have received in one of the stored procedure
Plenty wrong....
June 28, 2014 at 1:43 pm
Last I knew, if you shutdown your server gracefully then the services shutdown gracefully as well.
June 28, 2014 at 11:24 am
It may have nothing to do with SQL but with how the VM is configured and/or built.
June 28, 2014 at 10:56 am
That is a really broad question. What are you looking at automating?
June 28, 2014 at 10:53 am
Okay, now using your sample data show us what the output should look like if the query runs correctly.
June 28, 2014 at 9:54 am
It is scary how people manage to get into working with databases and then expect others to bail them out when they are in over their head.
And the begging and...
June 28, 2014 at 8:07 am
Sana4u (6/28/2014)
Is there a better way to write the following ?? Please view the below comments I have received in one of the stored procedure
Plenty wrong. For starters, this
where cast(convert(varchar(10),PostingDate,110)...
June 28, 2014 at 7:59 am
Viewing 15 posts - 6,421 through 6,435 (of 26,490 total)