Viewing 15 posts - 11,101 through 11,115 (of 13,462 total)
it's still just a hyperlink...your computer resolves the path for you.
Some Excelfile on a web server with DNS
May 14, 2009 at 10:13 am
it's best to use the GUI in designer. you cannot actually insert between column...behind the scenes you have to create a new table with the newly designed "correct" structure complete...
May 14, 2009 at 7:45 am
Create table #TempA ( Name Varchar(20), Age Int,Hobby Varchar(20),HobbyCode Int)
maybe I'm reading the requirements wrong, but if you want the current distinct combinations that exist in the table, would it...
May 14, 2009 at 7:36 am
I thought it's probably 30 million records, and not 30 million users, which I thought was on par witha Google sized-installation....but
just for fun, i searched for Google Searches per day...found...
May 14, 2009 at 7:24 am
you'll need to make it a UNC path, like \\ServerName\SharedFolder\Filename.txt or whatever.
you cannot put it on a C:\ drive, it has to be a share since you want other people...
May 13, 2009 at 10:30 pm
i have this saved, because it is a great resource for determing the minimal impact that a trace incurs:
May 13, 2009 at 1:43 pm
i created a view to see the data in my DML trace..only thing obvious i saw was to simply do a SELECT * from myDMLView where TextData like '%#%'...
May 11, 2009 at 10:08 pm
Greg Snidow (5/11/2009)
I can't see why Lowell's solution does not work, unless everyone, regardless of whether or not they have a photo present, exists in the table selling_photo.
I'm with Greg,...
May 11, 2009 at 8:25 pm
this seemed to work for me, but i only had one table with no index:
select distinct object_name(syscolumns.id),
syscolumns.name As CalculatedColumn ,
syscomments.text as TheCalculation,
isnull(object_name(SYSINDEXKEYS.id),'No Index Using This CalculatedColumn') As IndexName
from...
May 11, 2009 at 5:26 pm
syscolumns has a iscomputed column...the calculation is stored in syscomments if you want to join to get that:
now to get the indexes, that i'm not sure yet....
select object_name(syscolumns.id),
syscolumns.name As CalculatedColumn...
May 11, 2009 at 5:05 pm
get the script "sp_generate_inserts" from Narayana Vyas Kondreddi at http://vyaskn.tripod.com
he's got a 200 and 2005 versions, and they generate INSERT INTO [YOURTABLE]....statements for you by simply passing it the tablename.
be...
May 11, 2009 at 11:11 am
using COLUMNS_UPDATED, you can't, i guess you'd have to write your trigger to do each column individually, if that's what you wanted to do:
IF (UPDATE(DESCRIP) )
BEGIN
[same code example]
END
IF (UPDATE(COLUMN2) )
BEGIN
[same...
May 11, 2009 at 9:04 am
the inner join would only show members with records int he detail table...you want a left outer join instead:
SELECT DISTINCT email
FROM Member usr
LEFT OUTER JOIN Selling_Photo pho
...
May 11, 2009 at 8:23 am
lleemon13 (5/11/2009)
May 11, 2009 at 8:20 am
Viewing 15 posts - 11,101 through 11,115 (of 13,462 total)