Viewing 15 posts - 61 through 75 (of 99 total)
With this statement:
Set @strSQL = 'SELECT FullName as UserFullName FROM Users'
Set @strSQL = @strSQL + ' WHERE USERID = ''' + @ID + ''''
Set @strSQL = @strSQL + @WhereClause
Imagin...
October 24, 2006 at 9:17 am
First, is it stored as text or a number?
October 24, 2006 at 5:08 am
That statement looks very prone to SQL injection attacks.
October 23, 2006 at 4:23 pm
Your best bet is to pull the data into an app, process it, then store the result. If it really must be done by the sql server I suppose you...
October 23, 2006 at 10:21 am
I think your first step must be to find out exactly what equations are being done (both the explicit ones wrote for the solver and the implicit ones carried out...
October 23, 2006 at 6:05 am
Another approch is to have two columns in the EventAttempt table, EventID and EventType. Then you could use insert/update/delete triggers to check for ophaned rows.
October 20, 2006 at 4:14 am
Your only trouble is that the server doesn't really know what application is accessing it, it only receives sql. I would imagin that if anyone wanted to cause some trouble...
October 15, 2006 at 2:32 pm
Nevermind, finally found the reason for this problem. Sql Server Mobile doesn't install the required dll "sqlceoledb30.dll" when installing from the cab files.
I installed this file manually by copying it...
October 11, 2006 at 6:24 am
I've never found the ads too obtrusive here. Primarly because they don't pop up everywhere or cause epileptic fits whilst reading the page
Also...
October 6, 2006 at 8:13 pm
Firstly, KeyID looks to be always unique, thus could you not remove FirstName and LastName from the primary key and create a unique constraint on these two columns?
As for automatically...
October 6, 2006 at 8:03 pm
On way:
SELECT * FROM dbo.tblClaims_eligible
WHERE (@memberid IS null OR membid = @memberid)
If you pass @memberid as null the first half will always evaluate to true, thus it won't test the...
October 6, 2006 at 6:01 pm
You'll have to use an instead of update trigger to modify the underlying tables
October 6, 2006 at 5:19 pm
numeric type in SQL server is the same as decimal, what's the problem?
October 6, 2006 at 5:11 pm
If it's a proper temp table (name starts with #) it will be deleted when the connection is closed or goes out of the scope that created it (can't remember...
October 5, 2006 at 2:50 am
Green with play = server is running
Red with stop = server is not running
Gray circle = unknown, being a remote server management studio hasn't tried to connect to it yet, thus...
October 2, 2006 at 5:49 am
Viewing 15 posts - 61 through 75 (of 99 total)