Viewing 15 posts - 31 through 45 (of 68 total)
OK...let's agree to disagree. I see something like that, no good reason for something like that in a multi-user environment, and I take it to be a programmer's request...
November 1, 2011 at 4:58 am
"The point is you don't know for sure."
Actually you made that leap to multiple users not me, I took it at face value. Why would any application possibly...
November 1, 2011 at 4:44 am
I didn't see that being a requirement...where do you see that?
It wasn’t this:
“I need to pull data using multiple EXECs to get individual items. Example:”
Or this:
“Obviously, the output will be...
November 1, 2011 at 4:13 am
If you don't want to predefine the table you can use something like this:
declare @iParm int
set @iParm = 111249972
declare @sql varchar(1000)
set @sql = 'SELECT a.* into...
October 31, 2011 at 11:32 am
tnocella (10/10/2011)
SELECT name FROM atable WHERE a = 1
I want it to return Null if it finds nothing, but it just returns an empty...
October 11, 2011 at 4:40 am
BinaryDigit (7/20/2011)
I know that stored procs are a lot better than executing the same script all the time because it is able to cache, but becasue caching will mainly help...
July 21, 2011 at 6:50 am
K. Brian Kelley (5/11/2011)
tyson.price (5/11/2011)
- Under what security context does the back-end database get run?I don't know the answer to that. Maybe if you worded it differently.
Actually, I typed...
May 11, 2011 at 10:41 am
GilaMonster (5/11/2011)
Sorry, wasn't clear. The name of the account means little without access to your network. Is it a local machine account? A domain account? What permissions does it have?
Is...
May 11, 2011 at 9:56 am
GilaMonster (5/11/2011)
tyson.price (5/11/2011)
- Under what security context does the back-end database get run?I don't know the answer to that. Maybe if you worded it differently.
What account does SQL Server...
May 11, 2011 at 9:41 am
K. Brian Kelley (5/11/2011)
May 11, 2011 at 8:19 am
Thank you...I passed that on to my project leader 🙂
May 11, 2011 at 6:28 am
That being understood my question remains unanswered...can a specific program\executable be blocked?
May 11, 2011 at 6:12 am
I'm no expert by any means but I posted a similar question once before. Generally speaking, just from what I was told, it really doesn't matter in basic joins....
May 10, 2011 at 4:37 am
DerbyNeal (3/2/2011)
Thanks for the tip. The INSERT table/method is VERY useful - but wouldn't I still require a TRIGGER to run it though?
Using this method I would still need...
March 2, 2011 at 6:13 am
Maybe an alternative to a trigger is the OUPUT statement:
DECLARE @TmpTable TABLE (ID INT, TEXTVal VARCHAR(100))
----Insert values in real table as well use OUTPUT clause to insert
----values in the temp...
March 2, 2011 at 3:20 am
Viewing 15 posts - 31 through 45 (of 68 total)