Viewing 15 posts - 1 through 15 (of 15 total)
As you said, have you tried wrapping all the process in a transaction? I think, that is the usual and best way to utilize the maximum availability...
January 4, 2013 at 8:07 am
I beleive your Web application was developed in .NET and .NET framework has class libraries to acheive this functionality.
Convert it from FRONTEND and send the actual value to your DB.
Further...
September 28, 2012 at 11:47 am
Try selecting approximately 1000 from rows from other table (if you have any) and then do .../
INSERT INTO TESTTABLE(Col1)
SELECT Tcol1 FROM OTHER TABLE WHERE .....
If you need this for any...
September 28, 2012 at 11:14 am
Why not you can try with a job, which can capture the last modified date on the table and to to send emails?
September 28, 2012 at 11:08 am
You need to provide more details on the table details for creating index.
September 28, 2012 at 11:05 am
There are several ways to do acheive the same...
Here is the simple/basic query which strikes to my mind immediately
SELECT A.ClaimKey,
CASE WHEN A.MinClaim > B.MinClaim THEN 'Y' ELSE 'N' END AS...
September 22, 2012 at 4:28 am
I like the way Jeff determined to identify the issue 🙂
September 15, 2012 at 12:36 am
Hi Achtro,
Is this is the query you are looking for? If so, in the same query you can filter using HAVING clause to identify the columns which is having more...
September 14, 2012 at 8:53 am
Thanks John!
September 14, 2012 at 8:32 am
Hi Linda,
There are many ways to acheive the same and mentioned below is the basic query which satisfies your logic..
You can also use other function which optimizes your query output...
September 14, 2012 at 8:24 am
Wrong syntax.....
You need to use both the columns seperately in the WHERE clause
Like this..
WHERE COL1 IN (SELECT COL1 FROM.....)
AND COL2 IN(SELECT COL2 FROM........)
September 14, 2012 at 8:09 am
How it's possible to have more than one unique constraint on the same column? Obvoiusly, you should get an error, if I understand your question right....
Could you please provide your...
September 14, 2012 at 8:00 am
Literally speaking,
a) "Select *" will return the result set , whereas "Count(*)/Count(1)" will return a scalar value and this will result in significance difference in terms of I/O
b) ...
September 14, 2012 at 7:51 am
Shadhab,
The one which you tried joining schema_id, is must in case, if you have the same table name in different schema's with same/different data types
SCENARIO EXPLAINED
a) Suppose you have created...
September 14, 2012 at 2:37 am
Viewing 15 posts - 1 through 15 (of 15 total)