Viewing 15 posts - 24,001 through 24,015 (of 26,490 total)
Got to ask, what is the fiscal year? Also, what do you consider a fiscal month?
October 29, 2008 at 10:26 am
Any differences in execution plans between dev and prod?
October 29, 2008 at 10:05 am
I've been working with SQL Server for about 12 years now. I use BOL regularly. I also have a portable library in my car with about 8 SQL...
October 29, 2008 at 10:02 am
In your data flow, yes, add a lookup. If successful, do an update. If it fails, do an insert.
October 29, 2008 at 9:55 am
Just like you would have to if creating a permanent table. Base the column types off the data you are going to load from your queries.
October 29, 2008 at 9:38 am
To be safe, I'd disable the job while deploying a fully tested update to the SSIS package.
October 29, 2008 at 9:12 am
At the start of your stored procedure, create your temporary table. Then use INSERT to put the records into the temp table. Do your additional processing.
October 29, 2008 at 9:11 am
I'd set the autogrowth to a fixed amount, not a percentage.
October 29, 2008 at 8:59 am
debbie.coates (10/29/2008)
October 29, 2008 at 8:55 am
How about posting the actual queries you are running?
October 29, 2008 at 8:47 am
Davroche (10/29/2008)
October 29, 2008 at 7:09 am
Read the article identified below, then post the DDL for the table, some sample data, and the expected results based on the sample data. This will help us help...
October 28, 2008 at 4:51 pm
That would work also.
October 28, 2008 at 4:49 pm
Use your DDL trigger to dynamically build and start a job that performs the backup operation. The job should also delete itself upon successful completion so that you don't...
October 28, 2008 at 4:36 pm
Easy fix:
select
a.cuslink,
a.sequence,
a.effdate,
a.site,
a.entercd
from
#list1 a
...
October 28, 2008 at 4:06 pm
Viewing 15 posts - 24,001 through 24,015 (of 26,490 total)