Viewing 15 posts - 1 through 15 (of 17 total)
When using custom components like this, how can you deploy the SSIS packages to a SQL Server? Does the custom compenent also need to be installed on the server?
My team...
March 13, 2014 at 5:28 am
As part of a development team we have shared DBA resources, and cannot access most of the "good" stuff about the server ourselves. That being said, we do have a...
July 31, 2012 at 6:49 am
BIDS 2005 requires you to run the entire package to be able to debug using breakpoints on a script task. If you try to just execute the script task by...
July 13, 2011 at 11:02 am
Something I've done in the past is nested for each loops. We frequently need these types of reports, or we need to search SPROC definitions for certain key words (or...
June 14, 2011 at 7:07 am
To help prevent column additions from messing you up on the source side, you can specify the columns to pull in your select statement rather than running a SELECT *...
June 14, 2011 at 6:40 am
We have had to do this in the past, and what we do is:
1) Build a .xlsx template and store it in a "Templates" Folder on our destination server. We...
June 14, 2011 at 6:33 am
CTE might be the way to go here. You can use your same queries and just wrap them:
;WITH T1 as (
SELECT b.name as BU,
lsbd.bus_date,
lw.name as 'Workgroup',
SUM(lsbd.lab_sc_hs_qy) as 'Schd Hrs'
FROM t_wh..f_gn_lbr_sch_bu_dy...
May 6, 2011 at 12:59 pm
You could use CROSS APPLY with HASHBYTES to do a comparison of the rows. As long as you have some sort of unique id that would help you identify where...
May 6, 2011 at 12:51 pm
I guess it is easy to see how wide the definition of "easy listening" is in the grand scheme of things... that being said my top 5 are:
Metallica - ...And...
February 9, 2007 at 5:47 am
I checked the logs yesterday and it shows that each backup job is completing successfully. I just cannot figure out why the job will not move to complete in the SQL...
January 5, 2007 at 5:40 am
Yes, this job was created from a maintenance plan to back up the transaction log every 3 hours. Could that be part of the problem?
January 4, 2007 at 1:41 pm
Upon further investigation, it appears that the job is completing properly and saving my backup file. However, the job will not finish and be marked as complete to allow it...
January 4, 2007 at 1:30 pm
I found a few blocked spids on the database when the jobs where getting hung. It appears that some indexing may have been causing this problem.
The database that I am...
January 4, 2007 at 1:17 pm
be sure to link the other SQL server to the server that will be executing the query.
So for your example, if SQL1 is the other server and you want to...
February 17, 2006 at 6:08 am
The above command will only work if you have already created the table. After you link the server using sp_addlinkedserver or add the linked server in Enterprise Manager run this...
February 10, 2006 at 7:21 am
Viewing 15 posts - 1 through 15 (of 17 total)