Viewing 15 posts - 451 through 465 (of 1,124 total)
As Barry said, you were not clear on what you exactly needed. Since, you mentioned you have the table names, then I guess you need to fetch some kind of...
March 8, 2009 at 5:01 am
Well, you don't actually relate tables in SSIS, instead you create multiple data flows that transfer data from source to target tables with proper workflow order.
You will need...
March 8, 2009 at 4:44 am
There is an undocumented system procedure that executes any T-SQL query in all databases.
EXECUTE sp_MSforeachdb 'EXECUTE sp_spaceused'
March 6, 2009 at 11:28 am
Here is an article and a vb script that scripts the properties of all tasks in a text file. You can easily modify it by doing a search on...
March 4, 2009 at 6:21 am
Right click on the white space in the package window, go to Logging. Untick the value of all containers from the containers list.
March 4, 2009 at 4:30 am
josephptran2002 (2/22/2009)
February 23, 2009 at 8:17 am
I guess, he probably meant to add a column to the table that will store the physical path of the image file.
February 19, 2009 at 7:58 am
Are you sure that the file "C:\Users\babygirl\accessdb\Ayawaso_East.mdb" can be accessed via windows file system?
Try creating & accessing the linked server using an windows system administrator's account.
February 19, 2009 at 7:56 am
So, what you really need to do is filter offices according to the parameter.
WITH AllDDS AS
(SELECT DDS, DEClearedDate AS ClearedDate, DECleared AS Cleared
FROM ...
February 19, 2009 at 7:54 am
And what do you want to show in the report when ALL is selected?
February 19, 2009 at 7:29 am
I don't think so this can be done within T-SQL using standard methods (exclusing OLE automation). What I can think of, you to do is to build an application...
February 19, 2009 at 7:29 am
rais-rais (2/19/2009)
yup , i simply copied the script u suggested and made the changes so frankly
i dont know wat else to do
Which login are you using to execute the...
February 19, 2009 at 7:18 am
Chris Morris (2/19/2009)
DECLARE @MyEnormousBelly...
February 19, 2009 at 7:15 am
Have you tried my previous suggestions? What script are you executing? I see a variable declaration error.
February 19, 2009 at 6:57 am
josephptran2002 (2/19/2009)
February 19, 2009 at 6:52 am
Viewing 15 posts - 451 through 465 (of 1,124 total)