Viewing 15 posts - 61 through 75 (of 119 total)
Got it right finally. Maybe not the best solution but here's what I did. Split up both the input SSRS string and the "Paratype" strings, joined the two result set...
May 12, 2013 at 2:50 pm
A quick google search returned this see if it helps at all
May 11, 2013 at 5:06 pm
How about right click on tempdb / Reports / Standard Reports?
May 11, 2013 at 4:46 pm
Try
SELECT (DATEDIFF(SECOND,CAST('15:03:00.0000000' as TIME),CAST('16:02:00.0000000' as TIME))/3600)
February 6, 2013 at 7:01 am
Matt Miller (#4) (12/5/2012)
You're not doing yourself any favors by denormalizing the data. It makes the query reasonably tortured.
Hi Matt / Steve.
Thanks very much for your help. The...
December 11, 2012 at 6:40 am
boobalanmca07 (11/26/2012)
how to use format() in sql server
November 26, 2012 at 7:19 am
No EmployeeId? Why? You might have two employees with the same name..
SELECT DISTINCT
EmployeeId ,
Date...
November 8, 2012 at 3:48 am
For that specific query your index design doesn't make much sense. Also I wouldn't create indexes on tables with only a few rows. You may want to drop your indexes...
October 29, 2012 at 8:42 am
Hi,
Just create a proc and replace your hard coded values with variables so that you can use them
as report parameters in SSRS. Something like this:
CREATE PROCEDURE mySSRSReport
...
October 26, 2012 at 6:25 am
Stefan Krzywicki (8/23/2012)
August 24, 2012 at 2:58 am
premtg (9/3/2008)
I like to run the .bat file every 1/2 hr via SSIS package. Can you please help me how to write SSIS package for running .bat file? Thanks
Use the...
August 22, 2012 at 8:00 am
Abu Dina (8/22/2012)
We have 5 SQL Servers used by operations team.
QBDB01 - 62 Databases
QBDB02 - 41 Databases
QBDB03 - 39 Databases
QBDB04 - 31 Databases
QBDB05 - 28 Databases
The databases are mainly...
August 22, 2012 at 6:49 am
narendra.babu57 (7/26/2012)
In My Table A , Eid 101 having status all are "cp" then i need latest Edate, but in case 102 it is having different status so i...
July 26, 2012 at 5:03 am
s.khann786 (7/26/2012)
i have record in xml like
<root>
<row spareid='10' sparename='abcd' />
<row spareid='11' sparename='mno' />
<row spareid='12' sparename='xyz' />
</root>
i want to check the spareid in table to avoid duplication before insert for...
July 26, 2012 at 4:45 am
Viewing 15 posts - 61 through 75 (of 119 total)