Viewing 15 posts - 1,831 through 1,845 (of 6,401 total)
This produces the result set required.
create table #quotedetail (QuoteNum int, Brand varchar(10))
INSERT INTO #quotedetail values
(10047,'NISSAN'),
(10048,'TOYOTA'),
(10049,'TOYOTA'),
(10050,'BOBCAT'),
(10050,'JOHN DEERE'),
(10050,'KAWASAKI'),
(10050,'MANITOU'),
(10050,'POLARIS'),
(10050,'SKYLARK'),
(10051,'DOOSAN'),
(10051,'MITSUBISHI')
select * from #quotedetail
Select distinct QD2.QuoteNum,
substring(
...
November 4, 2015 at 2:03 am
Can you post screenshots of your TCP/IP configuration
November 4, 2015 at 1:50 am
The transfer logins task can copy the logins and SIDs, but not the passwords. It copies the logins with a random password and it also disables the login.
The best...
November 3, 2015 at 8:27 am
Your probably best getting in touch with Microsoft directly, I can't find no reference on the datazen website in relation to licensing.
November 3, 2015 at 6:29 am
Are they all in the same filegroup or different filegroups?
If different might be done for piecemeal restores.
November 3, 2015 at 3:37 am
Ed Wagner (11/2/2015)
Revenant (11/2/2015)
crookj (11/2/2015)
Ed Wagner (11/2/2015)
DonlSimpson (11/2/2015)
anthony.green (11/2/2015)
Ed Wagner (11/2/2015)
anthony.green (11/2/2015)
Ed Wagner (11/2/2015)
anthony.green (11/2/2015)
Ed Wagner (10/31/2015)
Revenant (10/30/2015)
TomThomson (10/30/2015)
happygeek (10/30/2015)
PeaceTreaty
Treat
Candy
Cane
Staff
Employees
Strength
S.P.E.C.I.A.L
Fallout
Shelter
Gimmie
golf
Ball
Base
November 3, 2015 at 1:49 am
How are you changing the service accounts? Services.msc or SQL Server Configuration Manager?
November 3, 2015 at 1:48 am
My 2 cents
declare @stemp varchar(50) = 'fl,ca'
create table #csvtest (name varchar(5), states varchar(10))
INSERT #csvtest(Name, States) Values('Joe','CA,FL,HI')
INSERT #csvtest(Name, States) Values('Mark','FL,MI')
INSERT #csvtest(Name, States) Values('Greg','MI,AR,AL')
INSERT #csvtest(Name, States) Values('Mary','AL')
INSERT #csvtest(Name, States) Values('Frank','AL,AR,WI')
select * from...
November 3, 2015 at 1:44 am
Care to post the solution for others who may have the same issue?
November 3, 2015 at 1:35 am
To get Nexus to import trace file on my system I have to disable event requirement checks
November 3, 2015 at 1:24 am
johnwalker10 (11/2/2015)
Msg 4902, Level 16, State 1, Line 3
Cannot find the object "disaster_management_DEV.dbo.TWITTER_T" because it does not exist or you do not have permissions.
Fix the statement to read like this:
ALTER...
November 3, 2015 at 1:20 am
Is this what you need?
create table #customer
(id int, name varchar(10))
create table #logs
(custid int, checked datetime)
insert into #customer values
(1,'cust1'),
(2,'cust2'),
(3,'cust3')
insert into #logs values
(1,'2015-11-01'),
(2,'2015-10-01'),
(3,'2015-01-01')
select
*
from
#customer c
left join
#logs l
on
c.id = l.custid and l.checked <=...
November 2, 2015 at 9:02 am
Sounds vaguely like a catch all query, where parameters can be null and not all need to be specified to execute the stored proc
Maybe Gail's article will help http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
November 2, 2015 at 8:36 am
Viewing 15 posts - 1,831 through 1,845 (of 6,401 total)