Viewing 10 posts - 46 through 55 (of 55 total)
The requirements of this is that I do not need to create a table, just a stored procedure or query. I just wanted to know of an efficient...
July 28, 2008 at 3:48 pm
I have not created a table structure yet as I wanted to get the query constructed. The criteria that I have listed is all of the information that I...
July 28, 2008 at 9:49 am
Thank you for your assistance.:)
July 24, 2008 at 3:54 pm
DECLARE @WeekStart smalldatetime
DECLARE @WeekEnd smalldatetime
DECLARE @WeekStart_Name varchar(10)
DECLARE @WeekEnd_Name varchar(10)
DECLARE @MonthYear varchar(12)
SET @WeekStart = (DATEADD(day, DATEDIFF(day, 0, getdate()) / 7 *...
July 24, 2008 at 3:53 pm
I will try to use your example:
[Incident Date] >= "#07/01/1753#" ? [Incident Date] : "#01/01/1900#"
July 15, 2008 at 6:46 am
You could use a derived column to check for this particular date.
TransactionDate == "000000" || LEN(TRIM(TransactionDate)) == 0 ? (DT_DATE)(SUBSTRING(@[User::Default_ReportDate],5,2) + "-" + SUBSTRING(@[User::Default_ReportDate],7,2) + "-" + SUBSTRING(@[User::Default_ReportDate],1,4)) : (DT_DATE)(SUBSTRING(TransactionDate,3,2)...
July 15, 2008 at 6:27 am
Microsoft SQL Server 2005
Integration Services
by Kirk Haselden
I would definitely give this one a look at.
December 4, 2007 at 4:40 pm
Jamie Thomson's blog - http://blogs.conchango.com/jamiethomson/
has been very helpful for myself as well.
November 14, 2007 at 7:27 am
I have ran into that error before. If you are using some kind of repository software like Microsoft Visual Source Safe, you need to first check out the script from Visual...
December 13, 2006 at 9:22 am
Viewing 10 posts - 46 through 55 (of 55 total)