Viewing 15 posts - 3,721 through 3,735 (of 6,486 total)
Richard Buchner, Chicago (4/8/2008)
OK will try again, thanks for the quick respone !
Once you install SP2 - the Provisioning tool for Vista should launch - be sure to set up...
April 8, 2008 at 10:19 pm
one of these days - I'm going to figure out how to colorize my code without turning it into a wreck........hehe
April 8, 2008 at 10:15 pm
Richard Buchner, Chicago (4/8/2008)
Is it possible to install and run the SQL 2005 Developer edition on a Vista Business machine.?Thanks:cool:
Absolutely. Essentially ignore the "this program has compatibility issues" messages,...
April 8, 2008 at 9:58 pm
WRACK (4/8/2008)
Only thing confused me was your reply
You'd have to copy those things to each of the user databases.
I assume you mean if I add them to...
April 8, 2008 at 9:54 pm
Jacob Luebbers (4/8/2008)
Now to speculate on why...
I can't...
April 8, 2008 at 9:51 pm
Model database is what is used as the model for creating NEW databases. So - whatever objects exist in Model at the time of creating the new database would...
April 8, 2008 at 8:57 pm
Jeff Moden (4/8/2008)
Matt Miller (4/8/2008)
April 8, 2008 at 8:39 pm
Jeff - which ones? sys.all_objects is context-sensitive, as is all_columns, all_views, syscomments, sysobjects. I haven't tested them all - but I have yet to find one that shows...
April 8, 2008 at 7:15 pm
Greg Charles (4/8/2008)
No. In fact, you may find that you can't truncate a table that's being referenced by foreign keys.
Correct - I didn't specify that very well earlier. ...
April 8, 2008 at 5:23 pm
Jack Corbett (4/8/2008)
Man Matt, am I glad you are around to clean up behind me!
It's the least I could do... You already did the heavy lifting...:)
April 8, 2008 at 3:41 pm
As some of us discovered recently - you can also check the default trace, or use the "schema changes" report available on right-click in SSMS on the server name.
April 8, 2008 at 3:24 pm
marge0513 (4/8/2008)
Thanks for responding Jack!I get a "missing keyword" error.
SQL doesn't have a "TRIM" function, only RTRIM and LTRIM.
So replace the last line with:
T1.File_Desc = Ltrim(RTrim(cbFileDesc.text) )
April 8, 2008 at 3:01 pm
As part of the Reporting services config tool, you set up two virtual directories in IIS, one of which is the "report manager". That's where you have access to...
April 8, 2008 at 2:57 pm
Short of recreating your environment on 2005, or attaching that database to a 2005 server and upgrading it to compatibility level 90 , no, not that I know of. ...
April 8, 2008 at 2:42 pm
Assuming @SearchString itself doesn't have a leading wildcard, you should be able to get something of a performance boost out of a covering index.
something like
create nonclustered index ix_MyTable on MyTable(name)...
April 8, 2008 at 2:20 pm
Viewing 15 posts - 3,721 through 3,735 (of 6,486 total)