Viewing 15 posts - 436 through 450 (of 2,171 total)
One of five orders?
Wouldn't a simple
SELECT TOP 20 PERCENT OrderID
FROM Table1
ORDER BY NEWID()
do?
June 8, 2009 at 11:57 pm
Thank you very much for your insights and patience with me!
I think maintenance team will have enough information now to stop "bugging" me, and you, any more for this matter.
June 4, 2009 at 6:48 am
I have a follow-up question.
The application is run on a desktop and when the application fails to connect to primary data site (for any reason), it will then try to...
June 4, 2009 at 2:30 am
Thank you again.
I'll pass on the links to maintenance team for examination.
Have a great day!
June 3, 2009 at 1:35 am
No, we haven't looked at database mirroring. Thank you for the tip!
There are 5-6 databases of 15-20 gb each.
June 3, 2009 at 1:20 am
You maybe don't need virtualization.
You can use instances, for example the 8 old servers can be 8 instances on the new server.
April 28, 2009 at 2:36 am
No problem.
Just be aware of that only one instance can be DEFAULT instance.
The other instance must be fully named in your connection string as [Computer]\[Instance]
April 28, 2009 at 2:33 am
If this doesn't suite your needs, your only option left is to have 5 separate updates.
UPDATEuser
SETname = CASE WHEN @name name THEN @Name ELSE Name END,
type = CASE WHEN...
April 27, 2009 at 10:02 am
Great!
I know I have a good solution for original AdventureWorks, but I have no idea how well it scales.
Sorry for the interruption people...
April 27, 2009 at 7:18 am
Hi Adam!
You're done testing Grouped String Concatenation Challenge?
April 27, 2009 at 6:56 am
create procedure update_user
(
@id int,
@name nvarchar(100),
@type nvarchar(6),
@add_date date,
@email varchar(50),
@phone int
)
as
set nocount on
UPDATEuser
setname=@name
, type=@type
, add_date=@add_date
, email =@email
, phone=@phone
WHEREid =@id
and (
name @name
or type @type
or add_date @add_date
or email...
April 27, 2009 at 6:51 am
Not really.
Try with the sample data provided by Mr Young.
AVGCorrectSequence
0.848343807091231
1.941816529992232
3.1029747509888821
3.637067671983737
3.7789496156818643
4.224919996747955
April 24, 2009 at 6:43 am
Here is a recent article about Paging
http://www.sqlservercentral.com/articles/T-SQL/66030/
And here is the following discussion
http://www.sqlservercentral.com/Forums/Topic672980-329-1.aspx
April 24, 2009 at 12:37 am
Viewing 15 posts - 436 through 450 (of 2,171 total)