Viewing 15 posts - 1 through 15 (of 518 total)
You can delete as many rows from the table as you like. The trigger fires FOR EACH ROW, so is fine handling one record. Test it, you'll see. Just do...
June 29, 2012 at 6:59 am
You have a data mismatch between what your attempting to insert into the table, and what the table expects. Do an explicit conversion on your inserted value, and it will...
June 27, 2012 at 7:56 am
If we were to be given the table structure, we would be able to help much more efficiently.....
May 12, 2006 at 8:48 am
Having a default value and being optional are different things entirely.......the view is correct.
I do not have an answer for where to find the optional designatore though, as I always...
May 3, 2006 at 3:49 pm
This is a case where dynamic sql is the only way......do a remote execute statement.....
Execute Otherdatabase.dbo.sp_execute "Drop ....."
May 3, 2006 at 1:09 pm
The only limit I've run into, has been in the distribution database being too busy to keep up.......the replcommands table gradually gets larger and larger, and isn't able to ever...
May 3, 2006 at 1:02 pm
I don't argue that RAID 10 is great....I wish I could do that......I just wondered at the logic of it, as I get the "it's not cost effective" argument.....If someone...
May 3, 2006 at 12:57 pm
According to the layout you show, it will all be on F, as that is designated as SQL Databases......which would be what holds data.....
What is the division of the 4...
May 2, 2006 at 3:53 pm
Yes, it is possible.......just not through the GUI wizard.....you have to build it out manually through script
set up the publications to do the replication through using procs, then modify the...
May 2, 2006 at 2:48 pm
In general, Yes, a unique index should be faster than a non-unique one. This is based on size of the index, and data per page. An index having hundreds of...
May 2, 2006 at 8:35 am
Most efficiently......a very good solution overall....
April 28, 2006 at 11:01 am
QUOTE : "long resource using code is usually not needed just get the create table statement and the create index statements for the table?"
Of course, you are absolutely right......and of...
April 27, 2006 at 1:43 pm
I just sent them to you.....
April 26, 2006 at 3:47 pm
I can't help but still think your missing the point here......which is to identify foreign key fields within a database of maybe hundreds of tables and possibilities which have no...
April 26, 2006 at 3:38 pm
With the structures in place, and an understanding of the procs I wrote for it, not long at all.....a few hours maybe just to test the setup.....it's VERY straightforward.....and I...
April 26, 2006 at 3:28 pm
Viewing 15 posts - 1 through 15 (of 518 total)