Viewing 15 posts - 1,081 through 1,095 (of 7,636 total)
rp-1074589 (1/25/2010)
...2)
- Stored procedure cannot change the database context by using USE 'database'
...
I have faced this problem many times and have developed a very reliable and consistent way deal with...
January 26, 2010 at 6:20 pm
Jeff Moden (1/23/2010)
RBarryYoung (1/23/2010)
Jeff Moden (1/7/2010)
... there's likely a set based solution that will keep all forms of RBAR at bay here.Heh. Well, all but one ... 😀
Where did...
January 23, 2010 at 10:56 pm
David Portas (1/22/2010)
PaulB-TheOneAndOnly (1/21/2010)
I can see no conflict between data normalization and accepting null values in non-key columns - as all rdbms out there allow and enforce.
All the conventional Normal...
January 23, 2010 at 3:05 pm
Assuming you are on SQL Server 2005, here is a very simple example of what Lutz was talking about:
SELECT *
FROM INFORMATION_SCHEMA.TABLES
FOR XML PATH
If you execute this with "Results to grid"...
January 23, 2010 at 3:00 pm
parthi-1705 (1/22/2010)
Hi MarkNice one, that is good in 2005,we are using 2000 how to get in 2000 any idea.
...
Ah. Then you should have used one...
January 23, 2010 at 2:46 pm
You might also want to consider changing that TEXT field to a VARCHAR(MAX) as Microsoft recommends.
January 23, 2010 at 2:24 pm
Jeff Moden (1/7/2010)
... there's likely a set based solution that will keep all forms of RBAR at bay here.
Heh. Well, all but one ... 😀
January 23, 2010 at 2:08 pm
AndrewSQLDBA (1/7/2010)
...I should have stated that I cannot use Dynamic SQL either. ...
Why not? It's perfectly safe as long as you do it correctly.
Here is how I would do...
January 23, 2010 at 2:05 pm
Bhuvnesh: Please stop posting your code without the [ code ] formatting tags, like this:
Bhuvnesh (1/19/2010)
CREATE TABLE dbo.PENDING_ANSWER_FILE
(
acct_id dbo.ut_synthetic_key NOT NULL,
qstn_stub dbo.ut_stub NOT NULL,
entity_stub dbo.ut_stub NOT NULL,
evt_stub dbo.ut_stub NOT...
January 23, 2010 at 1:25 pm
ALZ: Well, you know the drill :-), we'll need to see the sending code, the receiving code, the SB definitions and the definitions of any tables touched by the...
January 22, 2010 at 11:12 am
RBarryYoung (1/21/2010)
SQLPirate (1/21/2010)
January 21, 2010 at 5:36 pm
SQLPirate (1/21/2010)
January 21, 2010 at 5:35 pm
nagarajan.tiruppur (12/30/2009)
hi,Check
http://msdn.microsoft.com/en-us/library/aa259216(SQL.80).aspx
This a SQL 2005 forum and what you are pointing to is merely the SQL 2000 version of what Paul has already provided a link to.
January 21, 2010 at 5:13 pm
Pedro DeRose [MSFT] (1/21/2010)
...
2. Streaming results of TVF: T-SQL table-valued functions materialize their results in temp tables, whereas CLR...
January 21, 2010 at 5:00 pm
Viewing 15 posts - 1,081 through 1,095 (of 7,636 total)