Viewing 15 posts - 1,231 through 1,245 (of 2,452 total)
yusufm 48726 (5/22/2015)
Column 'Company.CompanyName' is invalid in the select list because it is not...
May 22, 2015 at 4:15 am
yusufm 48726 (5/22/2015)
I have got a query that I am working on but I can't get it working properly.
I am trying to group account number and company name so they...
May 22, 2015 at 4:08 am
Alessandro Andreatta (5/19/2015)
;WITH CTE AS (
SELECT
rownum = ROW_NUMBER() OVER (ORDER BY p.dt1),
p.Dt1,p.Dt2
FROM Intervalli p
)
SELECT
CTE.dt1, CTE.Dt2,
nex.dt1 Ndt1,
nex.dt2 NDt2
FROM CTE
LEFT JOIN CTE prev ON prev.rownum = CTE.rownum -...
May 19, 2015 at 7:35 am
SSRS Newbie (5/14/2015)
I've a excel spreadsheet with 650 records with unique PONumbers. I need to pull data from SQL server based on the PONumbers. I don't want to run...
May 14, 2015 at 10:05 am
this seems to be oversimplified......are your initial rows always, always formatted like you present ...or are there others?
for example
2 T & M Lambert xxx
3 Mr T, Mrs M and Miss...
May 14, 2015 at 3:40 am
tooba111 (5/13/2015)
Can You Please guide...
May 13, 2015 at 11:36 am
tooba111 (5/13/2015)
Let me try to explain what I am trying accomplish.
Here is my source data that I am receiving from customer every day in .txt
ID,Fname,Lname,Amount,Visit
1,Smith,D,125,1
2,James,C,145,3
3,Norman,S,121,1
4,Sam,P,111,2
In above...
May 13, 2015 at 10:55 am
Second row should be without Amount (4,Sam,P,,2) Because we don't want to calculate the same amount twice.
am a little confused on what you intend to do with your requested...
May 13, 2015 at 10:42 am
again assuming you are on SQL 2008....search this site for Jeff Moden and his articles and code for "Quirky update"....this may help you. There are some absolute rules to...
May 10, 2015 at 6:59 am
thanks for updating your code
now...you say you have been working on this for a few days....care to share what you have tried so far?
my initial thought is some form of...
May 9, 2015 at 8:37 am
can you please provide create table statements for this data
May 9, 2015 at 8:24 am
J Livingston SQL (5/8/2015)
New Born DBA (5/6/2015)
May 8, 2015 at 10:43 am
crowegreg (5/8/2015)
Previously, I would import an...
May 8, 2015 at 10:28 am
crowegreg (5/8/2015)
Thanks for the reply.I should have written I'm importing Excel spreadsheets on a weekly and monthly basis. I'm hoping their is some other way than using SQL import/Export wizard.
for...
May 8, 2015 at 10:20 am
Viewing 15 posts - 1,231 through 1,245 (of 2,452 total)