Viewing 15 posts - 301 through 315 (of 1,156 total)
Good to point this out. This is one of those situations where it depends on the business. Calculations can a be a tricky topic because users sometimes believe that...
March 15, 2008 at 10:12 am
You could also try adding column4 to the clustered index since the non-clustered index includes the clustered index anyway.
I agree this may help. This should give you an index...
March 14, 2008 at 9:43 pm
I forgot to mention that you can set the tsql I posted into a job to run as often as you want.
I do not know what recovery model you have...
March 14, 2008 at 8:53 pm
Probably would be faster to truncate the destination table and bulk insert from the source to the destination.
I really do not see a reason to spend time trying to figure...
March 14, 2008 at 8:48 pm
Check the upper limit of what you have allowed for tempdb growth. It may be set extremely large.
March 14, 2008 at 2:14 pm
I think it is picking up the autogrowth limitation is that roughly what you have available for disk space?
March 14, 2008 at 2:11 pm
I posted the code to create a delimited string, but you should be aware of some things. In some cases, using a function that concatenats the string using a...
March 14, 2008 at 1:39 pm
There is absolutely no reason to use Dynamic SQL for what you want to accomplish. There are plenty of other options available. All you need to do is...
March 14, 2008 at 1:21 pm
Ideally, you need to implement some sort of object tracking system. A few available options are source control and DDL triggers.
Source control allows you answer the big...
March 14, 2008 at 12:14 pm
Are the stored procedures being dropped/created and not altered. I think this would render the previous solution invalid.
March 14, 2008 at 12:05 pm
For example does the Agent account have access to the directory where you are creating the Excel spreadsheet?
March 14, 2008 at 9:54 am
You need to check the job history. Right-click the job and view the history. If it is not working it should tell you why in there. I...
March 14, 2008 at 9:52 am
Cool. Thanks for the feedback.
March 14, 2008 at 9:49 am
Even though the transaction has been rolled back, the seed is still altered. You would have to reseed to get a consistant flow of ids.
This is the code to...
March 14, 2008 at 9:47 am
Viewing 15 posts - 301 through 315 (of 1,156 total)