Viewing 15 posts - 1,846 through 1,860 (of 6,395 total)
More than one way to skin a cat and much more slicker, guessing you just get stuck in the ways you have done it in the past.
November 2, 2015 at 6:56 am
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
November 2, 2015 at 6:46 am
Can you not call WinRAR from the command line with another xp_cmdshell call to the rar exe and pass in the file and archive into the string?
November 2, 2015 at 6:42 am
Hopefully you have something that is joins both tables together, customer ID, that is unique to a particular customer.
create table #customer
(id int, name varchar(10))
create table #logs
(custid int, checked datetime)
insert into...
November 2, 2015 at 6:41 am
Something like this
declare @RequestDate datetime = '2015-11-02', @DecisionTime time = '13:29:21.357'
select @RequestDate , @DecisionTime
select
CONVERT(DATETIME,
CONVERT(VARCHAR(10),@RequestDate ,103)
+' '
+CONVERT(VARCHAR(12),@DecisionTime )
)
November 2, 2015 at 6:34 am
Try -t^~
Guessing the ~ is a command line special character like | and it don't like it, the ^ treats the ~ as an escaped character.
November 2, 2015 at 6:25 am
Not much info to go on there.
Please post screenshots, error messages, output logs etc
November 2, 2015 at 4:30 am
Missing MSI files where, in the service pack, in the base install
Guessing the Service Pack didn't download correctly, have you tried re-downloading
November 2, 2015 at 4:22 am
Correct, if your server allows Windows authentication that's the better option.
Otherwise your talking about adding 2 parameters to the script to prompt for username and password then using them to...
November 2, 2015 at 3:51 am
Two options, if you want to use SQL authentication and pass in a username and password you would need build the connection string dynamically. Saves storing the username and...
November 2, 2015 at 3:39 am
Ed Wagner (10/31/2015)
Revenant (10/30/2015)
TomThomson (10/30/2015)
happygeek (10/30/2015)
PeaceTreaty
Treat
Candy
Cane
November 2, 2015 at 2:13 am
Two datasources, two datasets then join with a lookup between both datasets in the tablix
November 2, 2015 at 2:03 am
All depends on your requirements.
Take a look at the stairways section of the site for great tutorials on both SSRS and SSIS
November 2, 2015 at 2:00 am
The problem is this column
[TWITTER].[SUBJECT] VARCHAR(20) NOT NULL,
Should that be
[TWITTER_SUBJECT] VARCHAR(20) NOT NULL,
November 2, 2015 at 1:58 am
Whats the full output of
DBCC CHECKDB WITH NO_INFOMSGS, ALL_ERRORMSGS, TABLERESULTS
November 2, 2015 at 1:55 am
Viewing 15 posts - 1,846 through 1,860 (of 6,395 total)