Viewing 15 posts - 1,261 through 1,275 (of 1,412 total)
I'm in! 🙂
Personally, what I want is a CREATE SEQUENCE statement, as in Oracle and especially DB2, and of course, in the upcoming SQL:200n standard.
CREATE SEQUENCE seq
AS INTEGER
START WITH...
December 12, 2002 at 3:30 am
Easiest way to set the needed rights is to create a minimum privileged account, then in Enterprise Manager (this is one of those rare times where you actually 'need' to...
December 9, 2002 at 1:23 pm
For a different way to insert images, check out the Bulk Image Insert (BII) tool in the SQL2k Resource Kit. Like bcp, but for image columns.
--
Chris Hedgate @ Apptus Technologies...
December 9, 2002 at 7:12 am
First of all, this is Oracle syntax with the outer join syntax (+), and the decode function also, so that query won't even work in SQL Server. I would rewrite...
December 6, 2002 at 1:04 pm
Almost all of the sp_MS-procs are undocumented (all but one actually, of almost 500!). Many of them are not really a part of SQL Server per se, but rather apart...
December 6, 2002 at 5:50 am
I'd have to agree with Andy and Antares, never seen this either. I just tested it on a table with several columns, returning most of them, and with the where-clauses...
December 6, 2002 at 2:36 am
Don, that's a pretty cool solution. Another one, similar in the general idea, is to insert a row into a table and then do an immediate rollback, like this:
create table...
December 6, 2002 at 1:55 am
One important point (imho), that Antares did mention but I just want to emphasize it, is that SET @Foo = (SELECT ...) will produce an error if multiple...
December 6, 2002 at 1:15 am
SQL for Smarties is great (as well as Celko's other books), one of the most important books for your shelf. I'd have a look at the nested sets model he...
December 4, 2002 at 4:00 am
Not that I would recommend it, but I guess it could be done by creating a proc that accepts the word to check as a parameter, and tries running something...
December 4, 2002 at 3:51 am
SQL Server does not have anything like that, it is a database management system and a database management system only. So, yes, you will have to build your forms in...
December 4, 2002 at 3:32 am
Well, there are a couple of prerequisites:
* All object names should be fully qualified.
* Use paramater substitution so that the actual statement text remains the same.
--
Chris Hedgate @...
November 27, 2002 at 5:56 am
Hard to give any advice without knowing more about what you need to accomplish, but one advice I can give you is that if you really need to use dynamic...
November 27, 2002 at 1:51 am
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE'
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
October 30, 2002 at 1:09 am
Viewing 15 posts - 1,261 through 1,275 (of 1,412 total)