Viewing 15 posts - 31 through 45 (of 98 total)
I hate to point out the bleedin' obvious, but why on Earth would you have a QA environment that is different from your production environment?? Isn't the point of a...
December 12, 2012 at 9:00 am
Please provide us with the code you use for your update.
Based on what you are writing just now, I assume you use a correlated subquery?
B
December 12, 2012 at 8:50 am
Create yourself a DIM_DATE table (I still wonder why a lot of people don't have such a table as a default) and then run the following code in your SP
SELECT...
December 6, 2012 at 4:38 am
:blush: .. thanks for the correction GilaMonster
December 4, 2012 at 8:36 am
We should all switch to Oracle immediately!
LOL
Paul White - SQL Server MVP
😀 ... I certainly was not suggesting such a radical step! - but I'm stuck at...
December 4, 2012 at 8:31 am
For Information purposes only, copy/pasted your SQL and then added FROM dual;
at the end to run it in Oracle and got the right answer without any further manipulations:
4020.73315
(running Oracle...
December 4, 2012 at 7:41 am
The appropriate locking should take place by default - you can provide hints if you wish to lock objects at different levels (row, page, table), and you can force queries...
December 4, 2012 at 6:41 am
I'm with CELKO - use a calendar table, then you can count your Sundays, weekends, Easter Mondays and whatever else you need between two dates - much much easier, and...
December 3, 2012 at 6:51 am
Error ID 10048 occurs when the port you are connecting to is being used by some other application.
In your case, it may be the same application, but at nearly the...
November 29, 2012 at 9:38 am
I would go back to basics on this.
If you can, copy your MSAccess app as a new file, zap everything but the code you are interested in - in that...
November 29, 2012 at 2:51 am
Not knowing what OS we are talking about, I will assume that the machine runs with Windows Server 2003+.
Have a look in the windows event log (http://support.microsoft.com/kb/308427), a number of...
November 28, 2012 at 7:49 am
Have you tried turning the IDENTITY_INSERT to ON?
November 28, 2012 at 6:29 am
Essentially it is to be able to ensure that all database transactions can be processed reliably. It sticks to the ACID concept (atomicity, consistency, isolation, durability).
Below shamessly copy/pasted from wikipedia...
November 28, 2012 at 2:50 am
Hi,
Do you have access to the machine hosting the SQL Server DB? if so, can you check on there for the windows log, and sql serror logs?
See if there is...
November 28, 2012 at 2:29 am
Bhuvnesh
November 27, 2012 at 3:08 am
Viewing 15 posts - 31 through 45 (of 98 total)