Viewing 15 posts - 61 through 75 (of 81 total)
They're not impossible to write in T-SQL, just difficult, because T-SQL doesn't provide the variety of operators provided by a full-blown programming language. For example, hashing and encryption algorithms often...
October 8, 2002 at 8:17 am
Regardless of how the cheque number is entered into the system, whether by GUI or by auto-generation, maintaining a single table of cheques allows you to insure uniqueness of cheque...
October 8, 2002 at 7:46 am
quote:
Andy I agree with you, but am providing the standard warning. I've been burned on NICs with the...
October 8, 2002 at 7:06 am
Why would he have to apply the where clause against both queries? Couldn't he just do:
SELECT *
FROM (SELECT Address, City, Region, PostalCode, Country
...
August 5, 2002 at 10:15 am
Or - do it one statement:
INSERT INTO tblA
SELECT 'xyz' AS ID,...[all other column names]
FROM tblA
WHERE ID = 'abc'
To clarify what I'm saying in...
July 5, 2002 at 9:20 am
Also, it looks like you said that your index is on the column: PRPR_ID. Your query, however, does not involve that column; therefore, the query optimizer is very unlikely to...
July 5, 2002 at 9:06 am
Try this (using apinelli's example table):
SELECT *
FROM Products AS a
JOIN (SELECT b.ID_REC
FROM...
June 28, 2002 at 5:09 pm
Try marking the stored procedure as a system object:
sp_MS_marksystemobject 'SP_PH_WHO2'
and see if it works properly after that.
Matthew Burr
June 28, 2002 at 3:57 pm
I just wanted to correct something. It is not true that inserts to a heap will always go at the "end" of the heap. SQL Server maintains PFS (Page Free...
June 28, 2002 at 3:45 pm
I would usually use DBCC PAGE to view the page in question; the page header indicates what object the page belongs to. For example, given the information you provided, I...
June 28, 2002 at 2:57 pm
On the contrary, you can mark a user object as a system object by using the stored procedure "sp_MS_marksystemobject" (as documented in Ken Henderson's The Guru's Guide to Transact-SQL. The...
June 28, 2002 at 2:16 pm
A clustered index is one where a leaf-level of the index is an actual data page, i.e. it contains the actual row data on it. This differs from a non-clustered...
September 17, 2001 at 2:08 pm
You have to have a separate Virtual IP and Virtual Name for each additional clustered SQL Server instance you install on a cluster; according to Books Online each Virtual Server...
September 17, 2001 at 1:41 pm
quote:
On first thought I like the DSN idea. You could use a UDL instead if you're using an OLEDB connection rather than...
September 5, 2001 at 4:00 pm
Viewing 15 posts - 61 through 75 (of 81 total)