Viewing 15 posts - 11,311 through 11,325 (of 18,923 total)
DDL = Data definition language.
It looks something like this for a single table with everything scripted out :
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Order Details]') and...
November 7, 2006 at 6:25 am
This question is still not answered... and it really may simplify your work at this point!!!
November 7, 2006 at 6:20 am
You can delete it >> Edit post, then delete at the bottom right.
November 6, 2006 at 9:44 pm
There's no need to resort to dynamic sql for this problem... but it might perform better (if all validations are done correctly)! ![]()
November 6, 2006 at 9:39 pm
I'm not the expert on that matter. I'll let someone else answer this one!
November 6, 2006 at 2:16 pm
As the article states, it may. But only to improve performance. You'll have to test for your environement to see if lock escalations occur with a trace. We can't do...
November 6, 2006 at 2:07 pm
That would be a big oops... hope it'll be fixed in SP2.
Thanx for letting everyone know about this
.
November 6, 2006 at 2:02 pm
Also this is what you are looking for :
/*
Ivica Masar
*/
USE pubs
DECLARE @var1 VARCHAR(12)
DECLARE @var2 VARCHAR(30)
SET ROWCOUNT 17
SELECT @var1 = au_id, @var2 = au_lname FROM authors ORDER BY au_lname,...
November 6, 2006 at 12:34 pm
I can confirm the 6-7 but I don't have time to design all this.
Why are you not hireing a programmer to do this for you?
November 6, 2006 at 11:14 am
You can always copy all objects into a new acces mdb... That usually works. I don't have anything automated however.
November 6, 2006 at 11:10 am
set rowcount @topnum
select...
set rowcount 0 --reset to unlimited
November 6, 2006 at 11:09 am
How do you think you got promoted to MVP???
Someone in high places is reading you
.
November 6, 2006 at 10:02 am
I guess it deletes the corresponding rows in the dependancies table when you delete an object. But the problem comes when you recreate objects, all dependancies are deleted, and only...
November 6, 2006 at 9:58 am
Viewing 15 posts - 11,311 through 11,325 (of 18,923 total)