Viewing 15 posts - 7,186 through 7,200 (of 7,636 total)
If you know that TABLE_NAME is fixed across any given FIELD_NAME, you can simplfy Joel's query like so:
SELECT FIELD_NAME, MIN(TABLE_NAME)
FROM yourTable
GROUP BY FIELD_NAME
HAVING COUNT(*) >...
April 9, 2008 at 8:16 pm
Explicitly use the actual name of your server.
April 9, 2008 at 6:31 pm
curbina (4/9/2008)
April 9, 2008 at 6:04 pm
DonaldW (4/9/2008)
If I don't tick people off on a regular basis I'm not doing my job.
Apparently, I've been doing my job at home and throughout my personal life for decades...
April 9, 2008 at 5:59 pm
Not a feature as far as I know, the button works on all of my Sql2005 boxes.
The only other thing that I can think of is a permissions issue, either...
April 9, 2008 at 6:18 am
Jeff Moden (4/7/2008)
rbarryyoung (4/7/2008)
Well, NOT IN has had some bugs in SQL Server 2000, so that is certainly possible. They are mostly cleared up in Sql2005.
What kind of bugs,...
April 8, 2008 at 11:55 pm
Does the output file exist yet? My recollection is that on 2005 (unlike 2000) the button will be disabled (dimmed) if the file has not been created yet.
April 8, 2008 at 11:48 pm
Yeah, that's the conclusion that I came to also. I probably will load all the records into XML in the trigger and then cursor them out in an intermediate...
April 8, 2008 at 11:45 pm
Bob Fazio (4/8/2008)
Steve, does this look familiar?
No, that's an rk07. Rk07's were not see-thru as far as I can recall. Maybe something from the RM or...
April 8, 2008 at 11:38 pm
mark (4/8/2008)
April 8, 2008 at 10:44 pm
This is the supported way to address it. It is also, by far, the safest, most reliable and fastest way to address it, particularily before Sql2005 (which gives us...
April 8, 2008 at 10:37 pm
What I have done in the past with similar situations is to right my working queries against a set of local Views with the same names as the tables in...
April 8, 2008 at 4:40 pm
wavesmash (4/8/2008)
This is what I use, however it would need to be modified to insert into a table if you wanted to select against it.sp_msforeachdb 'use ?;exec sp_spaceused'
cheers,
Andrew
That's how I...
April 8, 2008 at 4:33 pm
Viewing 15 posts - 7,186 through 7,200 (of 7,636 total)