Viewing 15 posts - 3,496 through 3,510 (of 4,820 total)
SSRS Newbie (7/8/2015)
Any help is greatly appreciated
Try this on for size:
DECLARE @ProdCodes AS TABLE (
Prefix varchar(8),
Code varchar(5),
[Type] varchar(20)
);
INSERT INTO @ProdCodes (Prefix, Code)
VALUES
('b', 'CH0'),
('b', 'CH1'),
('b', 'CH2'),
('b', 'CHX'),
('b', 'CM0'),
('b', 'CM1'),
('b', 'CM2'),
('b', 'CMX'),
('b',...
July 8, 2015 at 11:27 am
.Netter (7/8/2015)
July 8, 2015 at 9:00 am
pwalter83 (7/8/2015)
I am stuck at a requirement which is how to handle space between multivalue parameter values in SSRS. For e.g. if the values are as follows -'KLO LUG', 'HGY...
July 8, 2015 at 8:38 am
How about the following as a base from which to expand it to fit the need:
DECLARE @Rows AS INT = 1000000; -- One million rows
DECLARE @SampleSize AS INT =...
July 8, 2015 at 8:24 am
tcronin 95651 (7/8/2015)
July 8, 2015 at 6:26 am
phosplait (6/16/2015)
While option(recompile) did nothing, option(optimize for unknown) brought the dynamic query down to 3 seconds. Still slower, but I...
July 7, 2015 at 3:25 pm
So... did the restore work ? It's usually considered good forum etiquette to post back with details on what the solution was and whether any help received was useful.
July 7, 2015 at 2:58 pm
Any chance that one of the paths in the SAN fabric went offline ? How about a problem NIC for the SAN fabric? Check your event logs...
July 7, 2015 at 2:27 pm
SAMDEV (6/5/2015)
When I execute below statement, it gives me error - "ORA-000907: missing right parenthesis" whereas...
July 7, 2015 at 2:21 pm
Casper101 (7/7/2015)
We have a high volume database with 1000's of users and 1000's of procs. Our application enforces a 20 second timeout on all connections.
We can't adjust the 20...
July 7, 2015 at 1:43 pm
dhanekulakalyan (7/7/2015)
I have a detailed report in ssrs in which data can come from start date and end date parameters.
but the problem is. for example i gave startdate as...
July 7, 2015 at 1:23 pm
The basic problem here is assuming that just having an ODBC driver is enough to accurately convert rather different data types seamlessly between Oracle and SQL Server. The...
July 7, 2015 at 9:56 am
djj (6/16/2015)
July 7, 2015 at 9:21 am
Also, why wouldn't you use the following?
INSERT INTO REDSHIFT64.databasename.testschema.testoperation
(viasatsubscriptionID, subscriptionrowdate,
phonenumberday, viasatcustomerid)
SELECT viasatsubscriptionID, subscriptionrowdate,
phonenumberday, viasatcustomerid
FROM rdata.dbo.testoperation
July 7, 2015 at 8:36 am
sqlbidev (7/7/2015)
I have a populated table on my local machine, I have created the linked server and connection is working fine.
I have also created the same table on redshift...
July 7, 2015 at 8:32 am
Viewing 15 posts - 3,496 through 3,510 (of 4,820 total)