Viewing 15 posts - 3,466 through 3,480 (of 5,111 total)
You're updating your existing column with the values which is still a date column. If you pass it a varchar, it will be converted to a datetime and be stored...
July 20, 2017 at 8:36 am
Using the newer views, that John suggested:USE master;
GO
SELECT GETDATE() AS date_time,
d.[name] AS DBName,
COUNT(c.connection_id) AS Connections,
...
July 20, 2017 at 8:23 am
July 20, 2017 at 6:20 am
What you're trying to do there is use a variable to declare a schema and table name. The SQL you're attempting to run would basically translate into something like:DECLARE...
July 20, 2017 at 1:53 am
July 20, 2017 at 1:37 am
July 19, 2017 at 12:10 pm
meichmann - Wednesday, July 19, 2017 11:58 AMI did and got it, thanks
Glad to hear it!
July 19, 2017 at 12:08 pm
Are any of the packages in...
July 19, 2017 at 9:00 am
Nope, it works fine:) :
[/quote]
Yep, you're right, my bad date math....
July 19, 2017 at 8:35 am
meichmann - Wednesday, July 19, 2017 8:19 AMI got it....
Dateadd(DateInterval.Day, -1, DateAdd(DateInterval.Quarter, DateDiff(DateInterval.Quarter, CDate("01/01/2000"), Today()) +2, Cdate("01/01/2000")))
Thanks for your help!!! 🙂
Should...
July 19, 2017 at 8:23 am
;
July 19, 2017 at 8:02 am
Phil Parkin - Wednesday, July 19, 2017 7:55 AMDoes the target server version of the SSIS project match the target server?
Yes. The...
July 19, 2017 at 7:59 am
July 19, 2017 at 7:56 am
July 19, 2017 at 7:41 am
Viewing 15 posts - 3,466 through 3,480 (of 5,111 total)