Viewing 15 posts - 2,026 through 2,040 (of 14,953 total)
kschwid (2/13/2012)
February 13, 2012 at 11:47 am
I'd be interested in seeing the table definition for the target table, if you can provide that.
I may have missed it in your description, but did you try inserting into...
February 13, 2012 at 11:44 am
jcb (2/13/2012)
GSquared (2/10/2012)
...My point is simply that protecting the code when it's on their server is impossible. Can't be done
...
Sure, even a hardware token can be cracked.
The only way to...
February 13, 2012 at 6:39 am
CELKO (2/12/2012)
My wife is an ordained Soto Zen Priest who could...
February 13, 2012 at 6:38 am
You can add any column in the sub-query to the outer Select statement.
February 13, 2012 at 6:26 am
A trigger can call a stored procedure, just use Exec the same way you would in any other place where you call a proc.
If the proc will need access to...
February 10, 2012 at 7:24 am
jcb (2/9/2012)
GSquared (2/8/2012)
Assuming the database is on a server the person trying to steal your code has access to, all they have to do to steal your code is start...
February 10, 2012 at 7:16 am
cengland0 (2/8/2012)
GSquared (2/8/2012)The best bet is, if the database is on their server instead of yours, assume they know everything about it. Since it's impossible to stop them from...
February 10, 2012 at 7:09 am
GilaMonster (2/8/2012)
GSquared (2/8/2012)
If a shared connection suffers an error that closes the SPID (16 or higher, if I'm not mistaken)
20 or higher. Below that they terminate the statement or the...
February 10, 2012 at 6:52 am
Roy Ernest (2/10/2012)
February 10, 2012 at 6:42 am
First, the "IF Update" probably isn't doing what you want because an Insert will count every column as being updated. It looks like you're trying to use "IF Update"...
February 10, 2012 at 6:39 am
You can use "derived tables" for this kind of thing.
Would look something like this:
SELECT User_Id,User_FirstName + ' '+ User_Name AS Name
FROM dbo.ADMN_User_Details
left outer join (SELECT Opp_View.Close_Date, Opp_View.Status, O_Request_New___Review.O_Request_New___Review,Opp_View.Owner_Id,
A_Super_Regions.A_Super_Regions, A_Total_no_of_Employees.A_Total_no_of_Employees,
A_Scheme_Code.A_Scheme_Code, Company.State_Province,...
February 10, 2012 at 6:31 am
Instead of adding a fudge-factor to the math, why not do something like this:
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T ;
CREATE TABLE #T
...
February 9, 2012 at 12:40 pm
I've got an e-mail address that's associated with an SSC account I haven't used for a while (long story and boring, don't ask). It's never received any spam. ...
February 9, 2012 at 10:17 am
Samuel Vella (2/9/2012)
SQL Kiwi (2/9/2012)
February 9, 2012 at 6:27 am
Viewing 15 posts - 2,026 through 2,040 (of 14,953 total)