Viewing 15 posts - 46 through 60 (of 68 total)
I actually knew that and should have thought of it myself, but you mentioning it in context makes perfect sense in this situation. I'll definitely give that a shot....
February 4, 2009 at 2:59 pm
Thank you for the quick response, I will try that out and see if that
does anything for me.
One thing that puzzles me about this solution though (and I truly...
February 4, 2009 at 2:38 pm
Does the source Oracle query have all of its columns named (i.e for concatenated or calculated columns, you're naming those columns using an alias)? Otherwise those will show up...
July 24, 2008 at 7:28 am
If it were me, I would:
select max(len([columnName])) from [tableName]
for each column I was planning on modifying and compare that result against the length you want to change it to. ...
July 24, 2008 at 7:22 am
This is a long shot, but I had a similar issue when I updated some of the ODBC and OLE-DB drivers on one of my servers. I had a...
December 11, 2007 at 12:05 pm
You can use the waitfor command. For example, the following code will select two different times that are 10 seconds apart.
select GetDate()
waitfor delay '0:0:10'
select GetDate()
There are some other options...
December 11, 2007 at 7:07 am
I had a somewhat similar problem where someone wanted me to create a proc that inserted a record into a "logging" database each time a web page page was hit. This...
April 26, 2007 at 9:38 am
If you get really desperate and are able to, you could always restart the SQL server services. Each time you restart SQL, tempdb gets recreated. Unless you have a process...
April 26, 2007 at 9:28 am
This isn't going to be what you want to hear, but personally, I recommend against processes that create or alter procs affecting multiple databases. If you create this process, then...
April 26, 2007 at 9:23 am
I hesitate to give too much direct information because, unfortunately, there is no "silver bullet" to performance tuning. Tuning is one of those things where experience outweighs book knowledge. The...
April 26, 2007 at 9:10 am
I feel your pain! My favorite is when the network guy tries to give you advice on how to manage your SQL environment and thinks it is a good idea...
March 6, 2007 at 6:54 am
If everything truely is the same from the old server to the new, the first thing I would check is the physical connection of the server to the network among...
March 1, 2007 at 8:25 am
That is a good point that requires some clarification. Our schedules do indeed cover flights from anywhere to everywhere. So I do need to take minutes into account. My implementation actually has that...
February 13, 2007 at 1:54 pm
My suggestion is to consider a different implementation. I work for a company that deals heavily in airline schedule data. Needless to say, I am frequently concerned with locations and...
February 13, 2007 at 10:40 am
Without knowing the detail of your package, I would suggest this first. If you are using the "destination file" object as part of a data tranformation task...
1) open the "destination...
February 12, 2007 at 10:03 am
Viewing 15 posts - 46 through 60 (of 68 total)