Viewing 15 posts - 21,571 through 21,585 (of 22,184 total)
CREATE VIEW x
AS
SELECT * from linkedserver..schema.table
Works great.
October 26, 2007 at 9:47 am
Jereme Guenther (10/25/2007)
October 26, 2007 at 7:21 am
Unless it's impossible for some external reason, your stored procedure's parameters should always be of the data type that you're attempting to manipulate within the database. So, instead of a...
October 26, 2007 at 6:54 am
This is a discussion about the editorial posted today (Friday 10/26) by Steve Jones. Scroll up & follow the link at the top of the comments.
October 26, 2007 at 6:08 am
Drew Mayo (10/26/2007)
Kelvin Lush (10/25/2007)
October 26, 2007 at 5:48 am
I don't have a solution, but possibly an idea.
I live the first few years of my life in a VERY small town in Southwest Missouri called Sarcoxie. For a while...
October 26, 2007 at 5:41 am
Sorry, I just plucked it from the middle of existing code. Our system has one table that doesn't have versions and all the rest do. So the query included the...
October 25, 2007 at 1:08 pm
We also did some this way:
SELECT...
FROM Table x
CROSS APPLY (SELECT TOP(1) whatever..
...
October 25, 2007 at 1:02 pm
We had a similar problem and solved it, nicely, like this:
SELECT...
FROM Table1
JOIN Table2
on table2.PK = table1.Pk
and table2.AuditDate = (SELECT TOP(1) t2.AuditDate
...
October 25, 2007 at 12:26 pm
They've already had several instances of "Oh, I forgot to add that WHERE thingie to the query."
October 25, 2007 at 11:17 am
We did win the support argument. We've pretty much told them, if they tank the system, our only troubleshooting method will be a restore or restart the server. No other...
October 25, 2007 at 9:54 am
AAARRRGGGGH!
I can't believe I got such a simple question wrong. Reading the question carefully really does matter. I saw amalgamate & rows and didn't see the word tables in between......
October 25, 2007 at 8:05 am
Pick any rule you want and then follow it consistently.
Personally, I'd use camel case, or bumpy case so that the column would be:
AfterGlowLightingCompany
But honestly, if you don't mind a bit...
October 25, 2007 at 8:01 am
Check to see if anyone has set collation on the columns different than the collation for the server. That would explain why only some of them are having the issue.
October 25, 2007 at 7:55 am
There's just not one right answer. The question you have to ask, in addition to the structure, how will the data be accessed?
For example, CustomerCode on your Customer table sounds...
October 25, 2007 at 7:53 am
Viewing 15 posts - 21,571 through 21,585 (of 22,184 total)