Viewing 15 posts - 1,831 through 1,845 (of 6,395 total)
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
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
November 2, 2015 at 8:00 am
Cross posted follow on question
http://www.sqlservercentral.com/Forums/Topic1732853-391-1.aspx
November 2, 2015 at 7:32 am
C:\Program Files\WinRAR\rar.exe a -r C:\bcp\customers.rar C:\bcp\Customers.csv
http://comptb.cects.com/using-the-winrar-command-line-tools-in-windows/
November 2, 2015 at 7:09 am
Viewing 15 posts - 1,831 through 1,845 (of 6,395 total)