Viewing 15 posts - 1 through 15 (of 19 total)
Also, make sure you have the right version of the Oracle client. 64 vs. 32bit makes a huge difference. You should also attempt to build some kind of...
September 27, 2012 at 12:52 pm
Sorry, just got back. I didn't really read through your second post, but I think this is right/close/gives you an idea. Also, SQL 2008 R2 makes it easier.
DECLARE@timeend...
May 17, 2012 at 3:03 pm
Start to finish, with stealing a line from Lynn.
DECLARE @startdate DATETIME
SET @startdate = '2012-05-14 12:07:00.000'
Declare @enddate DATETIME
SET @enddate= '2012-05-15 15:40:34.497'
DECLARE @elapsedtime INT
SET @elapsedtime = datediff(mi, @startdate, @enddate)
SELECT...
May 16, 2012 at 11:56 am
The above component is fast, but it does require significantly more memory to do it that way.
March 13, 2012 at 9:40 am
Yep, I got it wrong (technically right) because I was wrapped up in the declaration of variables.
February 14, 2012 at 10:27 am
Charles Kincaid (1/17/2012)
January 17, 2012 at 1:19 pm
Fair enough. I feel the same way about Powershell.
January 17, 2012 at 10:42 am
I'm not a fan of this. Aside from it being a maintenance issue (editing the SSIS package every time a new folder is needed or removed), you could at...
January 17, 2012 at 9:37 am
Ah, thanks guys. It makes sense, just never occurred to me to write it that way.
Edit: Indeed, I did edit it. Meant to note it. My bad.
June 2, 2011 at 3:55 pm
You're syntax is incorrect.
Try the following:
SELECT tim.Number, tim.DisplayName, tim.TkprStatus from LINKEDSERVERNAME.database.schema.table as tim
May 12, 2011 at 10:58 am
So this says
Note
Creating compressed backups is supported only in SQL Server 2008 Enterprise and later, but beginning in SQL Server 2008, every edition can restore a compressed backup.
May 6, 2011 at 2:43 pm
Well played!
Slope (4/27/2011)
April 28, 2011 at 7:16 am
How is this not better?
Select day(dateadd(mm,DateDiff(mm, -1, getdate()),0) -1)
April 26, 2011 at 11:21 am
It's all about how it's used and understood. For most of the failed ORM based projects I've seen, the idea is that you let the ORM write the SQL...
April 12, 2011 at 11:33 am
Why not just include all your SSIS packages in one project in BIDS, and deploy it using the Manifest?
March 28, 2011 at 12:31 pm
Viewing 15 posts - 1 through 15 (of 19 total)