Viewing 15 posts - 931 through 945 (of 1,183 total)
P, What you want isn't actually a Pivot. Pivot will rotate the values from rows to columns but only if you have a predefined set of KNOWN values in the...
September 10, 2007 at 11:13 am
That's what the OR part accomplishes.
All students not at M regardless of their career_level.
September 10, 2007 at 9:30 am
SELECT site,campus_id, pin
FROM dbo.tblStudents
WHERE
-- get all students at site M that are not undergrads
(site = 'M' and...
September 10, 2007 at 9:16 am
*laughs* Well Jeff, I prefer to have my code ran and done quickly so I can go drink another...
September 8, 2007 at 10:27 am
Move your search criteria into a "table" left join from it to your tbl_orders as below ...
SELECT cols.col_number, col_status
FROM
(SELECT '123' AS col_number
UNION
...
September 7, 2007 at 1:23 pm
I haven't tested this, but it should work and NO Cursor! Except for the TOP 8 part. If you do in fact need the top 8 reply and someone or...
September 7, 2007 at 1:13 pm
This may or may not help, have you looked into SQL Compare and SQL Data Compare.
August 9, 2007 at 9:35 am
August 9, 2007 at 9:23 am
Lisa,
That is exactly what I am seeing and can't find a solution. The weird thing is that the message can go to four different people, and three of them can...
July 23, 2007 at 11:56 am
Have you tried without the ".\\" ?
Just using ...
SqlCeConnection con = new SqlCeConnection("Data Source =TestDB.sdf; Password =testdb;");
July 9, 2007 at 9:34 am
Yes and NO! There are all sorts of unique identifiers in the RS database and I really don't think you can just copy them over.
June 28, 2007 at 9:13 am
David,
Are you saying that you have subscriptions set up in RS 2000 Enterprise using MS's interface, and you are attempting to re-create them in RS 2005 Standard without the interface...
June 28, 2007 at 8:54 am
David,
I am unclear on what you are asking. What columns are returned from [Reports Ledger]
And the procedure should work the same in 2005 as it does in 2000.
Jason
June 28, 2007 at 7:53 am
What do you get when you run ...
SELECT TOP 100
dbo.[Web-Registration-Golf].Delegation AS Facility
,dbo.certifs.Owner
FROM
dbo.[Web-Registration-Golf]
LEFT JOIN dbo.certifs
ON...
June 25, 2007 at 11:49 am
After looking closer, are you sure that counting on the StateID is appropriate? Wouldn't you use certifs.Misc or .Kind
just a thought...
June 25, 2007 at 11:22 am
Viewing 15 posts - 931 through 945 (of 1,183 total)