Viewing 15 posts - 31 through 45 (of 54 total)
Ali,
I've handled this using DTS by creating a Working table like Mark suggested and setting up my flat file as a txt or xls file source. I run through scrubbing and...
July 19, 2007 at 4:50 pm
Ben,
Brian's query works because of the set-based nature of SQL. The looping that you describe is all handeld behind the scenes for us. Thanks for helping out with this one.
Jim
July 19, 2007 at 4:36 pm
Brian and John, thank you guys for providing this. I hadn't used the
SELECT @Attribs=@Attribs+Attribute+', ' FROM Table2
syntax in a long time and had forgotten about it. This works perfectly...
July 19, 2007 at 4:34 pm
yuk! that's what i was afraid of.
Thanks for your help, Ben.
July 19, 2007 at 3:22 pm
Thanks for the suggestion, Ben. Unfortunately, there can be any number of attributes for each order.
July 19, 2007 at 2:50 pm
As was stated earlier, you have to set up a regular transaction log backup plan. BOL says:
"When SQL Server finishes backing up the transaction log, it automatically truncates the inactive...
December 21, 2005 at 1:55 pm
SQL Profiler has a SQL Transaction available in the "Available Event Classes". This tracks the BEGIN, COMMIT, ROLLBACK, SAVE statements associated with transaction.
There is also the Transaction Log option...
December 21, 2005 at 1:23 pm
"For reading the Transaction Log, I've heard that Lugiment's Log Explorer is good."
Lumigent Log Explorer is a very useful tool. However, if you have very large log files or log backup...
December 21, 2005 at 1:13 pm
Do you have an end date set on the schedule?
December 13, 2005 at 5:44 pm
I'm a little confused on why you are converting the @scanDensity to a varchar for comparison with the Scandensity decimal value. i've never seen that before.
case when ScanDensity > '...
December 13, 2005 at 3:00 pm
What is the schedule of your package set for? (how often, what days, etc.)
December 13, 2005 at 2:49 pm
It looks to me like you are hitting the second "Then 9 -- eliminate from consideration" in the case where the clustered index is greater than the density you specify...
December 13, 2005 at 2:30 pm
Thank you for the reply...Yes, both sa and BUILTIN/Administrators are set up on the server. SQL Agent runs under a windows account set up for that machine. That account was also...
October 24, 2005 at 9:24 am
Viewing 15 posts - 31 through 45 (of 54 total)