Viewing 15 posts - 61 through 75 (of 128 total)
Thanks
I used OUTPUT parameters a lot in Oracle so I think I should be able to get it to work
there's always BOL, too
🙂
December 9, 2008 at 7:17 am
My vice is more work-related. I am way too impatient to move on to something new and consequently am really bad at testing.
December 5, 2008 at 6:39 am
if you are at a shop with applications written and implemented look at the stored procedures that were written for them
the downside to that is that you may pick up...
December 4, 2008 at 8:16 am
Ha! nice to see someone has a sense of humor :hehe:
btw, the lead programmer here is still smarting over your suggestion he should "put his hands on the table...
December 4, 2008 at 8:01 am
I would caution about the use of DISTINCT, though
we have an application here which tries to find a DISTINCT key using a multiple table JOIN from one table to put...
November 20, 2008 at 6:37 am
how about using a table variable, inserting your data in there, then inserting the sorted table variable into the permanent table?
November 13, 2008 at 6:56 am
doesn't SQL Server 2008 have a MERGE capability?
November 13, 2008 at 6:53 am
If you really need to, create a table variable then SELECT that INTO #temp
i.e.
DECLARE @Table TABLE
(ID INT,
Field1 VARCHAR(20) etc)
then
INSERT INTO @Table (ID, Field1...
November 11, 2008 at 2:34 pm
The answer to the question, are triggers useful, is as always it depends. I currently work with an application riddled with triggers (some with RBAR) and in an earlier...
November 10, 2008 at 6:47 am
A lakh (also written lac) is a unit in the Indian numbering system equal to one hundred thousand (100,000; 105). It is widely used both in official and other contexts...
October 24, 2008 at 8:05 am
what's a lakhs?
potato pancake?
bodies of water?
is missing and really needs?
October 24, 2008 at 6:44 am
thanks to Jeff and Lowell
- I cut and pasted examples to add to my useful scripts
October 16, 2008 at 6:46 am
actually, since I have been soooo disciplined - defining StringBuilders and initializing them as EXECUTE sp I can do a global search for EXECUTE
and find the stored procedures that way
any...
October 9, 2008 at 8:14 am
if your proc is not too large, isn't it faster to make it
DECLARE @strSQL NVARCHAR(MAX)
SELECT @strSQL = kode FROM table
EXECUTE sp_executesql @strSQL
October 8, 2008 at 6:40 am
Viewing 15 posts - 61 through 75 (of 128 total)