Viewing 15 posts - 9,436 through 9,450 (of 9,643 total)
Found this article, http://technet.microsoft.com/en-us/library/ms141704.aspx, that might help. It basically tells you how to convert data types in SSIS. SO you can convert from DT_STR to DT_BYTES. LIke this:
(DT_BYTES, 5) "GBMCU"
Hope...
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
September 13, 2007 at 7:35 am
I would definitely recommend SSRS if you can get 2005 and use the report builder + models as already suggested. If you can't do that MS Acess comes to mind. ...
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
September 13, 2007 at 7:18 am
Based on this you would want your clusered index on another column or columns and if you are using the identity column in joins you may want a non-clustered index...
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
September 6, 2007 at 6:56 am
Have you analyzed the code to see if the cursor can be replaced with something set-based? It sounds tp me like the cursor is starting some tasks that do not...
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
September 6, 2007 at 6:53 am
The DB is in Simple recovery model so the log can't be backed up.
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
September 6, 2007 at 6:46 am
I do not run Vista, mainly because I do not have a PC that would run Vista. I also don't think Vista really adds anything I need. I could care...
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
August 31, 2007 at 6:50 am
Is CLR Integration enabled? If it is you could write an assembly that accesses the remote data and use the assmbly to create a Table Valued function you can then...
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
August 30, 2007 at 7:28 am
Have removed the last change you made to the report? Have you tried using debug mode and running the report?
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
August 30, 2007 at 6:36 am
I thought this was an excellent article with a simple solution to a complex problem. There are definitely possibilities for performance imporvement, but the solution supplied to the problem was...
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
August 29, 2007 at 6:26 am
If you have this option it is the way to go. Are the db's all on the same server?
I would write db specific sp's and then have a master sp...
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
August 22, 2007 at 6:54 am
I'm not sure how this will affect overall performance, but I believe it will use the same execution plan regardless. You could union the 2 tables and since the clustered...
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
August 22, 2007 at 6:40 am
Here is the T-SQL for this RESTORE DATABASE NORTH
FROM DISK = 'C:\SQL\Backup\North.bak'
WITH MOVE 'NORTH_Data' TO 'D:\SQL\Data\North_Data.mdf',
MOVE 'NORTH_Log' TO 'E:\SQL\Log\North_Log.ldf'
For dull disclosure I copied this from this...
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
August 22, 2007 at 6:27 am
Some other issues you may need to address are: does revoking delete allow the user to run a truncate? If the user has all rights except delete they can still run a drop...
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
August 22, 2007 at 6:23 am
It would appear that Sql Server is using different execution plans for the SP and the query. Chekck the the execution plans to see what SQL Server is doing, then...
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
August 20, 2007 at 7:41 am
Just to clarify what Ninja is saying. He means run the code that Deepak provided on another server or to a new database and then import the deleted table from...
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
August 20, 2007 at 7:38 am
Viewing 15 posts - 9,436 through 9,450 (of 9,643 total)