Viewing 15 posts - 24,421 through 24,435 (of 39,818 total)
I think T-SQL is relatively easy to read as well, once it's formatted the way I see it.
At least as easy to read as some of the C++ I've seen,
April 7, 2009 at 11:16 am
The MVP certainly isn't a ton of knowledge. It's a community contribution award.
Arguably I haven't contributed anything substantial to the SQL knowledge base in quite some time. Instead I think...
April 7, 2009 at 10:01 am
The master database controls the function of the server. It is not designed to emulate a SQL 2000 server, and all the structures in there will not necessarily work. It's...
April 7, 2009 at 9:15 am
I think you're always trying to reduce risk. Even if you want to tackle a new venture, or make a new risk in an area, you want to reduce the...
April 7, 2009 at 9:11 am
Not sure which version of risk that was. It looked liked the best picture 🙂
We have a new version here with metal horses, kind of a pain compared to the...
April 7, 2009 at 9:09 am
You are welcome. Glad it's working for you.
You can't disable trusted connections. you can disable a login, which has a status tab, but that's not the server. If you call...
April 7, 2009 at 9:07 am
Sorry, that was a 2008 link.
http://msdn.microsoft.com/en-us/library/aa905184(SQL.80).aspx
April 7, 2009 at 8:59 am
There is frustration at times, and rudeness as well (possibly together). It's part of the package when teaching.
I've been thinking about this a bit. I think that those that want...
April 7, 2009 at 8:39 am
Thanks for the update.
FYI, you cannot disable trusted authentication. You can disable SQL Authentication, but Windows is always enabled.
April 7, 2009 at 7:43 am
So you want the column names and types in T-SQL.
i.e, if I queried for metadata from the proc uspMyProc, you'd want something like
name varchar(20)
id ...
April 6, 2009 at 5:00 pm
I'm guessing that you want to get only that row that corresponds to the max date.
first, I'd suggest you write using ANSI joins. That would be something like:
select A.CUST_ID,A.NAME1, B.ADDRESS1,...
April 6, 2009 at 4:58 pm
I wasn't aware that the timestamp could be parsed into datetime. It's supposed to be a versioning value, not related to when something occurred. It's updated with every change to...
April 6, 2009 at 4:51 pm
Are you restoring a user database? And are you restoring to the RTM level?
I wouldn't expect this, but perhaps if you're restoring a system database.
April 6, 2009 at 4:50 pm
No, and why would you want to. The master contains information specific to the operation of a 2005 server.
April 6, 2009 at 4:49 pm
Viewing 15 posts - 24,421 through 24,435 (of 39,818 total)