Viewing 15 posts - 5,476 through 5,490 (of 6,486 total)
Sergiy (12/12/2007)
[Code]
insert into real_table --will get posted to the current table regardless of type
select col_list
...
December 12, 2007 at 4:45 pm
Sergiy (12/10/2007)
Except when trigger is badly written.
Like your one. 😉
You do insert inside of INSTEAD OF INSERT.
Besides it does not make much sense, if suddenly nested trigger are...
December 12, 2007 at 3:16 pm
Sergiy (12/12/2007)
I just did something like that today - using a staging table - the 1M or so records took 13 seconds to finish. You'll be lucky if you...
December 12, 2007 at 3:10 pm
If you have a staging table, why not use that instead of a cursor to scrub/update/correlate/fill in your data. Even with the extra insert - it's going to be...
December 12, 2007 at 2:37 pm
As SQLBill mentioned - it's all in the mix, as required by the customer. That being said - both sides are important. Showing that you know how to...
December 12, 2007 at 1:57 pm
GO+number is 2005-specific. This doesn't work in 2000.
December 12, 2007 at 10:09 am
the TRUNCATE TABLE operation technically locks the entire table first, so if you're doing a single insert operation, it shouldn't interfere. On the other hand could be ugly if...
December 12, 2007 at 10:07 am
Adam Haines (12/12/2007)
The only potential problem I see is the application cannot inform the user that the backup has completed or failed. This can...
December 12, 2007 at 9:31 am
wouldn't it just be easier to attach a backup copy of the DB in a new 2005 instance and try to see if or how they work? Most of the...
December 12, 2007 at 8:26 am
TheSQLGuru (12/12/2007)
...but of course for write ops you have to divide by 4 for raid 5. ...
personally I think the ease of use of microsft products - the belief that...
December 12, 2007 at 7:50 am
No - user-defined functions cannot perform operations that change the database state, so DML is not allowed.
December 12, 2007 at 7:37 am
You've got the wrong stored procedure wired up to the wrong event in the ASP page. The SP used to load the page should not be the same one...
December 12, 2007 at 7:31 am
indhu06 (12/11/2007)
This is wat i hv understood
I dont need licenced copy of sql server to deploy reports in my local machine(for development purpose), but i need licensed copy...
December 12, 2007 at 6:57 am
GilaMonster (12/12/2007)
December 12, 2007 at 6:54 am
This is NOT a recommended, but...you can use the SET ANSI_NULLS OFF notation. It should allow you to use it that way.
That being said - you really should pursue...
December 11, 2007 at 6:40 pm
Viewing 15 posts - 5,476 through 5,490 (of 6,486 total)