Viewing 15 posts - 3,706 through 3,720 (of 6,486 total)
Sanjeev Jha (4/9/2008)
I am using Microsoft SQL Server Management Studio version 9.00.1399.00. I am trying to add a custom report to Management Studio. I created a .rdl file in BIMS....
April 9, 2008 at 11:59 am
Todd Engen (4/9/2008)
These two catalog views should show that.
SELECT * FROM sys.views
SELECT * FROM sys.procedures
By the way - sys.views returns all USER views, which sounds like what you want....
There's also...
April 9, 2008 at 11:35 am
Jeff Moden (4/9/2008)
Matt Miller (4/8/2008)
Jacob - you hit it on the nose. Forcing the join hint makes the difference.
Crud... SQL Server is getting more like Oracle every day...
April 9, 2008 at 11:26 am
If you don't mind using a temp table - you can cut that to 15 seconds.
[font="Courier New"]--Set up Test scenario
DROP TABLE files
GO
CREATE TABLE files([file_name] VARCHAR(10), range_start VARCHAR(10), Range_end VARCHAR(10))
INSERT files([file_name],range_start)
SELECT...
April 9, 2008 at 11:02 am
GSquared (4/9/2008)
April 9, 2008 at 10:09 am
Derek Dongray (4/9/2008)
GSquared (4/8/2008)
April 9, 2008 at 9:55 am
hmm..ugly. That's not going to work.
So - back to your original question. Keeping identities is important if you have them, so I'd keep that checked for those that...
April 9, 2008 at 8:48 am
Have you tried simply using your Access front-ends with linked SQL Server tables? Assuming you're not overly fancy in your Access app - you could use them "as is"...
April 9, 2008 at 8:05 am
Girish Bhat (4/9/2008)
April 9, 2008 at 7:54 am
marge0513 (4/9/2008)
Being a newbie, I have to ask this dumb question........why do I need the Group By in order to just select the maximum dates...
April 9, 2008 at 7:50 am
Girish Bhat (4/9/2008)
April 9, 2008 at 7:35 am
Ahh... I see it.
don't reuse the alias in the subquery:
[font="Courier New"]SELECT T1.*, T2.*
FROM
Table1 T1 INNER JOIN
Table2 T2 ON
T1.FILE_NAME = T2.FILE_NAME AND
T1.Downloaded_Date = T2.Act_Date INNER JOIN
(SELECT
T1.FILE_NAME,
MAX(T1.DownLoaded_Date) AS Max_Date
FROM Table1 T1 --<<look here
...
April 9, 2008 at 7:29 am
Jeff Moden (4/9/2008)
Matt Miller (4/8/2008)
one of these days - I'm going to figure out how to colorize my code without turning it into a wreck........hehe:hehe: How'z 'bout taday 😛
http://extras.sqlservercentral.com/prettifier/prettifier.aspx
[font="Courier New"]SET...
April 9, 2008 at 7:16 am
WRACK (4/8/2008)
I create a function called Blah in the master database and rather than calling that function if it was in the same database like...
April 9, 2008 at 7:13 am
marge0513 (4/9/2008)
Thanks for responding!I tried that too by just taking that part out and putting in string value
T1.File_Desc = 'LEVY'
Does this mean you're all set, or are you...
April 9, 2008 at 6:59 am
Viewing 15 posts - 3,706 through 3,720 (of 6,486 total)