Viewing 15 posts - 136 through 150 (of 345 total)
And don't take your directors (old managers) attitude to personally. Your manager probably told him that he couldn't work with you so he has a choice between getting rid of...
September 30, 2007 at 10:47 pm
Haven't looked at this very carefully but it doesn't seem to cater for entries that are split across pages in syscomments.
Would also maybe return false entries if one statmet has...
September 30, 2007 at 7:31 pm
mjschwenger (9/30/2007)
Please, note that the slow statement is the one that uses bind parameters, not literals....
September 30, 2007 at 6:58 pm
Sorry to hear about what's happened to you (again?).
"So I am not a team player ? All I want is to do my job. Actually all the past years I...
September 30, 2007 at 3:37 pm
How quickly do you need this to run?
If SMO is too slow it implies that your database structure is very volatile so maybe you should look for a solution that...
September 30, 2007 at 12:47 pm
Glad you've solved the problem.
Be careful about any code that tries to generate a row number using non-unique data. It probably means that different calls could generate different values for...
September 30, 2007 at 11:05 am
Depends on the context.
If you are talking about backups:
restoring is creating the dtaabase from the backup file - by default this will also recover but you can prevent this step....
September 30, 2007 at 10:59 am
How are you doing the copies?
Sounds like a select * into from query analyser which will just log the extent allocations (ish).
Maybe dts is doing a create table and logged...
September 30, 2007 at 10:47 am
First thing to do is to check that the source database is ok.
Try selecting the max value for that column and see if you get an error.
Try dbcc checdatabase also.
What...
September 30, 2007 at 10:40 am
Sounds like you will need to do this multiple times.
I usually create a job to do it - backup the source database then restore it with move and replace.
Then all...
September 30, 2007 at 10:36 am
Try
information_schema.columns
or syscolumns (a bit more difficult to interpret)
you can choose the columns to return.
September 30, 2007 at 10:31 am
September 30, 2007 at 10:26 am
Jeff Moden (9/30/2007)
nigelrivett (9/29/2007)
If you want to report on full history of...
September 30, 2007 at 9:50 am
There is a case for auditing inserts - it depends on what you are using the audit trail for.
If you want to report on full history of the data then...
September 29, 2007 at 11:32 pm
Jeff Moden (9/29/2007)
Phil Factor (9/11/2007)
is a popular introductory article on the technique
Well, I'll be damned... Now I know who to blame... 😀 (NOT Phil... Pop Rivet!)
I've had...
September 29, 2007 at 11:02 pm
Viewing 15 posts - 136 through 150 (of 345 total)