Viewing 15 posts - 1,066 through 1,080 (of 9,641 total)
Based on the limited information you've provided I have no idea what you really need for output as the new query you've provided with the UNION doesn't makes sense to...
April 30, 2014 at 1:39 pm
I doubt this is exactly what you are looking for, but I think it'll get you moving it the right direction.
USE test;
GO
DECLARE @workers TABLE
(
...
April 30, 2014 at 12:19 pm
mcfarlandparkway (4/30/2014)
Before that in free column for particular...
April 30, 2014 at 12:05 pm
I don't know of a way to remove the "+" when you set a toggle item, but you can use an expression in the hidden property of the items being...
April 30, 2014 at 11:25 am
You need to convert your Month and Year to strings in order for the "+" to be concatenation and not addition and you can't add a string and integers.
You can...
April 30, 2014 at 11:10 am
Based on the information you have provided I would do this:
SELECT
SCH.SystemID,
SCH.ProgramID,
SS.SystemName,
CASE WHEN SCH.ProgramName =...
April 30, 2014 at 11:00 am
As Sean has said it would be much easier to provide a workable answer with additional information.
Here's an idea on how to do it (I have no way of knowing...
April 30, 2014 at 10:50 am
I think joining to a date table would probably be the easiest way to solve the problem.
A couple of questions:
What do you mean by retired time?
Is the end date considered...
April 30, 2014 at 10:43 am
Good opening article and I look forward to the rest of the stairway. I'm in the process of trying to get my current workplace to get databases in to...
April 24, 2014 at 9:34 am
gbritton1 (4/17/2014)
select datediff(m, '0001-01-01', '9999-12-31')
returns 119987
That is the largest difference in minutes between the earliest and latest dates handled by SQL Server. The earliest date it can...
April 17, 2014 at 11:41 am
I'd probably handle this by making the query for Select Employee From List Parameter an expression something like this:
=IF(Parameters!EmployeeID.Value = String.Empty, "Select ID, Name From dbo.Employee where Name Like '%'"...
April 17, 2014 at 10:58 am
What is the base date? 1900-01-01, 1970-01-01. The basic idea is:
DATEADD(Minute, Integer, BaseDate)
April 17, 2014 at 10:32 am
SQLBill (4/8/2014)
Ville-Pekka Vahteala (4/8/2014)
SQLBill (4/8/2014)
Jack Corbett (4/6/2014)
April 9, 2014 at 6:30 am
So on Thursday I was asked to help analyze a batch process for a third-party product that originally took 2 hours and is now 19+ hour process that sometimes fails....
April 6, 2014 at 5:53 pm
Andrew,
Here's my explanation for pluralization. Because the table doesn't contain a car it contains cars. The row is a car the table is a set of cars. ...
April 3, 2014 at 6:28 am
Viewing 15 posts - 1,066 through 1,080 (of 9,641 total)