Viewing 15 posts - 9,961 through 9,975 (of 26,489 total)
Phil Parkin (8/22/2012)
Here is a possible alternative. I haven't compared it to Phil's solution.
Actually, my name is now 'Pro' 🙂
oops :blush:
I'll try to remember that in the future. 😉
August 22, 2012 at 2:38 pm
First, I have no idea what article you are refering to here. Second, there are no non-logged operations in SQL Server. The BCP is logged, so if you...
August 22, 2012 at 2:34 pm
Here is a possible alternative. I haven't compared it to Phil's solution.
create table #temp (
NM_ID char(3)
,STRT_DT date
,END_DT date
);
insert #temp
select 'ABD', '01/10/2010', '01/11/2010' union all
select 'ABD', '01/11/2010', '01/12/2011' union all
select...
August 22, 2012 at 2:29 pm
Evil Kraig F (8/22/2012)
Lynn Pettis (8/22/2012)
August 22, 2012 at 1:08 pm
I'm going to go against the flow a bit here. I think it really depends on what the application is intended to do. Where I work now I...
August 22, 2012 at 1:01 pm
I try to pay enough attention that I don't get bit by a bye week for a player, maybe looking for an occasional change if a player isn't performing well...
August 22, 2012 at 12:15 pm
A partitioned table is a table, in fact starting in SQL Server 2005 all tables are actually partitioned with a single partition. It should have no affect on the...
August 22, 2012 at 10:07 am
You could use linked servers and synonyms to access the data from another database in another instance on the same server (doesn't that sound convoluted). I personally don't see...
August 22, 2012 at 9:35 am
Stefan Krzywicki (8/22/2012)
Brandie Tarvin (8/22/2012)
ChrisM@Work (8/22/2012)
Brandie Tarvin (8/22/2012)
August 22, 2012 at 9:26 am
aostanley (8/21/2012)
Thanks to your help, I have a solution...
August 21, 2012 at 11:47 pm
With no execution plan to see what is going on, here is one possible idea for you to try:
ALTER PROCEDURE [dbo].[usp_tbl_staff_assisted_getbyuser]
@col_staff_username CHAR(20),
@usertype...
August 21, 2012 at 3:28 pm
You are welcome. Now, try and tell us how we accomplished the task. If you can't explain it, you shouldn't use it in production as you are the...
August 21, 2012 at 3:00 pm
Others beat me, but I didn't give it just as the OP asked.
create table #testtab1(ID int, Status int);
insert into #testtab1 (ID, Status)
values (1,0),(2,1),(3,0),(4,1),(5,1),(6,1),(7,1),(8,1),(9,0),(10,1),(11,1),(12,1);
go
With BaseData as (
select
ID,
...
August 21, 2012 at 2:52 pm
MegaDBA (8/21/2012)
August 21, 2012 at 1:03 pm
Minnesota - Viking (8/21/2012)
durai nagarajan (8/21/2012)
August 21, 2012 at 12:34 pm
Viewing 15 posts - 9,961 through 9,975 (of 26,489 total)