Viewing 15 posts - 10,246 through 10,260 (of 26,489 total)
Glad you were able to fix it as I still haven't found what I was looking for.
August 7, 2012 at 4:18 pm
There is more to what you are asking that you haven't told us. If two processes are attempting to update the same record, you should get one process being...
August 7, 2012 at 4:16 pm
First, you should know by now what you need to post and how to post it. If not, read the first article I reference below in my signature block.
That...
August 7, 2012 at 4:03 pm
SQLRNNR (8/7/2012)
Lynn Pettis (8/7/2012)
August 7, 2012 at 3:22 pm
I don't know, but I'm really getting tired of questions wanting answers but not getting enough information to for me to even start to give a decent answer. And...
August 7, 2012 at 2:35 pm
gerard-593414 (8/7/2012)
The sample I gave ws just a very simple sample to illustrate the error.
There are in fact 8 parameters input as :
@Type, @WhichFieldQuery,@CustomerFrom, @CustomerTo, @TranFrom,@TranTo,...
August 7, 2012 at 1:26 pm
Gianluca Sartori (8/7/2012)
Dan Guzman has a couple of nice posts on the subject:
http://weblogs.sqlteam.com/DANG/archive/2008/08/30/Sliding-Window-Table-Partitioning.aspx
http://weblogs.sqlteam.com/dang/archive/2008/09.aspx
Setting up the partition scheme and rebuilding your indexes on the...
August 7, 2012 at 1:16 pm
Does it matter who is using which workstation?
August 7, 2012 at 12:39 pm
chaitukadivella (8/7/2012)
August 7, 2012 at 12:38 pm
chaitukadivella (8/7/2012)
August 7, 2012 at 12:11 pm
Also, computing date ranges becomes easier if you use a closed end comparision on the lower end and an open end comparision on the upper end.
For example, you want all...
August 7, 2012 at 12:02 pm
Mohammedr_mcts (8/7/2012)
When SQL Server 2000 and SQL Server 2005 clients request SQL Server resources on a named instance, the client network library sends a UDP message to the server using...
August 7, 2012 at 11:50 am
I'd have to say enlisted. At a previous employer we were looking at new technologies in an effort to replace a COBOL/ISAM based application (that application is still...
August 7, 2012 at 11:34 am
Something like this?
with SampleData as ( -- this cte simply provides the sample data for the query
select
strval
from
(values ('0008.22816'),('069.3142'))dt(strval))
select
strval,
...
August 7, 2012 at 11:18 am
Viewing 15 posts - 10,246 through 10,260 (of 26,489 total)