Viewing 15 posts - 6,181 through 6,195 (of 7,191 total)
This is hard work, isn't it? You've been asked four times now to post the code of the trigger. You have to help yourself if you expect anyone...
November 24, 2007 at 2:35 am
Read about BCP, bulk insert and SSIS and choose the one that suits you best. You can also use linked servers and OPENROWSET.
John
November 23, 2007 at 5:04 am
Do you have any DDL triggers defined on the database or server?
John
November 23, 2007 at 4:57 am
Rajeev
You've got seven different SELECT statements in there. Have you tried running them individually to see which one is taking most of the time? Once you identify that,...
November 22, 2007 at 6:32 am
Is there a question here, and if so what is it?
John
November 20, 2007 at 3:36 am
I believe OS error 112 relates to disk space. I know you say you have 63GB free, but have you checked the free space on the drive where the...
November 17, 2007 at 2:29 am
Use DBCC INPUTBUFFER to see what query is running on the blocking process. Then go through the normal steps to troubleshoot that query - eliminating any row-by-row processing, ensuring...
November 17, 2007 at 2:26 am
I haven't tested this, but even if it's not entirely syntactically correct, it'll point you in the right direction.
SELECT m.IdSeq, m.MyName
FROM MyTable m JOIN (
SELECT MAX(IdSeq) AS IDS
WHERE KeyValue =...
November 17, 2007 at 2:21 am
pamarant (11/15/2007)
If that db crashes at 12:40PM, you can only recover up until your last full backup and apply any differential and log backups, for which you would have none.
Not...
November 16, 2007 at 2:01 am
Sorry but we're not going to do your homework for you unless you show you've made some attempt to solve the problem yourself.
John
November 16, 2007 at 1:41 am
SELECT * FROM MyTable
WHERE MyColumn LIKE '%''%'
John
November 15, 2007 at 2:01 am
Great article, Andy - thanks. Can I just ask a question about Tip#4?
If you want to really make sure no resultsets occur you can use spconfigure to set disallow...
November 13, 2007 at 5:16 am
I think by "a quick example" you mean you want us to do all the work for you. You've been posting here for a long time so I don't...
November 12, 2007 at 8:26 am
If you're writing the procedures yourself, rather than working with existing ones, then why not just use an output parameter to return the name(s) of the table(s) used? You...
November 12, 2007 at 8:20 am
You can't use dynamic SQL in a view, since you would need EXEC or sp_executesql to execute the SQL, and a view definition can only consist of a SELECT statement....
November 9, 2007 at 9:35 am
Viewing 15 posts - 6,181 through 6,195 (of 7,191 total)