Viewing 15 posts - 3,421 through 3,435 (of 9,644 total)
Are there any jobs running DBCC or Index maintenance at those times?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 8:10 am
Perhaps if you read the first article linked in my signature and posted according to those suggestions you might get better, more complete answers.
In SQL Server, by default, a trigger...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 7:32 am
The SQL Server Agent is NOT included with SQL Server Express Edition. You would need to use SQLCMD and the Windows Scheduler.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 7:25 am
Duplicate post. Please post answers here.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 7:21 am
Do you have any explicit page breaks set in the report?
What are the margins for the report (found in report properties)?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 7:19 am
What kind of transformations are you making to the data?
If you are not doing some major transformations than I would recommend that you just use T-SQL to move...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 20, 2010 at 7:16 am
Alvin Ramard (1/19/2010)
Paul White (1/19/2010)
Roy Ernest (1/19/2010)
Not much action in THE THREAD this year.... hmmm I wonder what is happening..Trying to finish my first SSC article.
Not a fast reader, eh?
😛
Oh...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 11:59 am
Grant Fritchey (1/19/2010)
Work, work, lots of work. I'm barely posting at all these days either.
Ditto. I also just registered to take 70-432 TS: Microsoft SQL Server 2008, Implementation and...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 10:51 am
Looking at your report you need to place the textboxes in a list or use a table to display multiple rows. Without a list or table you only get...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 9:40 am
Glad I could help. The key in SSIS Expressions is to remember that everything has to be typed correctly including NULL.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 7:31 am
Here is the way I query the default trace:
SELECT
TE.[name],
I.*
FROM
sys.traces T CROSS Apply
sys.fn_trace_gettable(CASE WHEN...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 7:31 am
I have dealt with a similar situation and here is the SSIS Expression that I use in a Derived Column transform:
DateCol == (DT_DATE)"12/30/1899" ? NULL(DT_DATE) : DateCol
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 7:19 am
If I understand your request correctly you can query the Default Trace (if you haven't disabled it) for the Audit Schema Object GDR Event to find when a user or...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 7:13 am
Can you post the connection string you are using and the code that tries to connect?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 6:50 am
To the best of my knowledge, you can only have one data source for a table.
Why can't you bring all the data in one dataset?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 19, 2010 at 6:46 am
Viewing 15 posts - 3,421 through 3,435 (of 9,644 total)