Viewing 15 posts - 12,586 through 12,600 (of 26,486 total)
Here is what I put together:
CREATE TABLE [dbo].[testPartition](
[testCol] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
);
insert into dbo.testPartition
select 'a'
union all select 'a'
union all select 'a'
union all select 'b'
union all select 'c'
union all select 'd'
union...
April 21, 2012 at 12:15 am
deebabat (4/20/2012)
WITH Numbers(Number) AS (
SELECT 1
UNION ALL
SELECT...
April 20, 2012 at 11:53 pm
deebabat (4/20/2012)
-Column 1: contiguous integers from 1 - 102
-Column 2: if Column 1 is...
April 20, 2012 at 11:27 pm
Does this happen to all tables or only certain tables?
April 20, 2012 at 4:38 pm
The Dixie Flatline (4/20/2012)
Time for another meeting."Hi, Lynn"
After my quick foray this morning before leaving for work, I am staying away. I may read, but I am not getting...
April 20, 2012 at 3:31 pm
You shouldn't have to pay anything since you are retiring the old servers. All you are doing is moving the licensed software to new hardware.
April 20, 2012 at 1:44 pm
And after that, check out these articles:
April 20, 2012 at 1:33 pm
You would really need to check with Microsoft. Depending on the edition you are installing, it is possible that you could actually combine the CALS and have 13 users/devices...
April 20, 2012 at 1:31 pm
SQLRNNR (4/20/2012)
Lynn Pettis (4/20/2012)
Sean Lange (4/20/2012)
Lynn Pettis (4/20/2012)
SQLRNNR (4/20/2012)
The Dixie Flatline (4/20/2012)
April 20, 2012 at 1:26 pm
One little change (well, a couple of changes if you look at my setup code as well):
create table #group
(
ISSUE char(20),
ROW_DATE datetime,
DURATION int
);
insert into #group
select 'red','2012-04-01 15:40:00.000',300
union
select 'orange','2012-04-01 15:45:00.000',2580
union
select 'blue','2012-04-01 16:28:00.000',480
union
select...
April 20, 2012 at 1:25 pm
Or, an alternative:
CREATE TABLE ProductLocs (
ProductLodID INT IDENTITY(1,1),
Product VARCHAR(10),
Location INT);
INSERT INTO [ProductLocs] (
[Product],
[Location]
) VALUES (
'PROD1',
1 );
INSERT...
April 20, 2012 at 1:08 pm
CELKO (4/20/2012)
You have not ever...
April 20, 2012 at 12:54 pm
Sean Lange (4/20/2012)
Lynn Pettis (4/20/2012)
SQLRNNR (4/20/2012)
The Dixie Flatline (4/20/2012)
April 20, 2012 at 12:26 pm
djustice 20821 (4/20/2012)
DECLARE @countVar int
set @countVar=1
While @countVar=1
begin
if getdate() in (select * from...
April 20, 2012 at 12:21 pm
Viewing 15 posts - 12,586 through 12,600 (of 26,486 total)