Connecting Tech Pros Worldwide Help | Site Map

How add rows to table in Microsoft SQL 2008 Server

  #1  
Old November 14th, 2008, 10:15 PM
krzys
Guest
 
Posts: n/a
Hi!
Simple questio - how to add rows to table in Microsoft SQL 2008
Server.
I don't mean by executing query (INSERT INTO...), but by clicking on
table or something - not by writing query manual.
When I'm clicking RMB on table I can't see nothing like "open",
"add"... Insead of these I have "new table...", "design", etc.
  #2  
Old November 14th, 2008, 11:35 PM
Ed Murphy
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


krzys wrote:
Quote:
Hi!
Simple questio - how to add rows to table in Microsoft SQL 2008
Server.
I don't mean by executing query (INSERT INTO...), but by clicking on
table or something - not by writing query manual.
When I'm clicking RMB on table I can't see nothing like "open",
"add"... Insead of these I have "new table...", "design", etc.
SQL is not Access. You probably want to create an Access file with
linked tables pointing to SQL, or the equivalent with Access replaced
by (insert favorite front-end tool here).
  #3  
Old November 14th, 2008, 11:45 PM
steve
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


On Nov 14, 4:31 pm, Ed Murphy <emurph...@socal.rr.comwrote:
Quote:
>
SQL is not Access. You probably want to create an Access file with
linked tables pointing to SQL, or the equivalent with Access replaced
by (insert favorite front-end tool here).
What, you're not going to recommend he look at Dataphor! :)

www.beyondsql.blogspot.com
  #4  
Old November 15th, 2008, 07:05 AM
krzys
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


As far as I can remember in SQL Server 2005 by clicking RMB on table
there was option "open"...
  #5  
Old November 15th, 2008, 09:55 PM
Hugo Kornelis
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


On Fri, 14 Nov 2008 23:03:14 -0800 (PST), krzys wrote:
Quote:
>As far as I can remember in SQL Server 2005 by clicking RMB on table
>there was option "open"...
Hi krzys,

That has been replaced by "Edit top 200 rows", and as far as I know can
still be used to enter new rows.

However, I suggest that you don't use this option, nor the "edit" option
in SQL 2005. There are various known issues with both methods of
entering data.

--
Hugo Kornelis, SQL Server MVP
My SQL Server blog: http://sqlblog.com/blogs/hugo_kornelis
  #6  
Old November 16th, 2008, 05:45 PM
krzys
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


On 15 Lis, 22:53, Hugo Kornelis <h...@perFact.REMOVETHIS.info.INVALID>
wrote:
Quote:
On Fri, 14 Nov 2008 23:03:14 -0800 (PST), krzys wrote:
Quote:
As far as I can remember in SQL Server 2005 by clicking RMB on table
there was option "open"...
>
Hi krzys,
>
That has been replaced by "Edit top 200 rows", and as far as I know can
still be used to enter new rows.
>
However, I suggest that you don't use this option, nor the "edit" option
in SQL 2005. There are various known issues with both methods of
entering data.
>
--
Hugo Kornelis, SQL Server MVP
My SQL Server blog:http://sqlblog.com/blogs/hugo_kornelis
Great answer - thansk a lot!
  #7  
Old November 17th, 2008, 03:35 AM
Ed Murphy
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


steve wrote:
Quote:
On Nov 14, 4:31 pm, Ed Murphy <emurph...@socal.rr.comwrote:
Quote:
>SQL is not Access. You probably want to create an Access file with
>linked tables pointing to SQL, or the equivalent with Access replaced
>by (insert favorite front-end tool here).
>
What, you're not going to recommend he look at Dataphor! :)
>
www.beyondsql.blogspot.com
No, at least not yet. Dataphor may be a useful platform for new
project development, but (as I've said many times before) for existing
projects - of which there are many - the cost of switchover would
usually hugely outweigh any potential benefits.

I'll take this opportunity to quote something I wrote back on
October 22 - you haven't replied yet, would you like to do so now?
Quote:
As previously discussed, I agree that table-type variables would be
useful in other situations, though I still think you're shooting
yourself in the foot by constantly pointing to an instance (Dataphor)
that would incur a huge switchover cost for existing projects. SQL
Server 2008 has table-valued parameters, albeit limited to read-only
input parameters; within that limit, do you approve of them?
  #8  
Old November 17th, 2008, 08:55 AM
steve
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


On Nov 16, 8:26*pm, Ed Murphy <emurph...@socal.rr.comwrote:
Quote:
[snipe]
>
I'll take this opportunity to quote something I wrote back on
October 22 - you haven't replied yet, would you like to do so now?
>
Quote:
As previously discussed, I agree that table-type variables would be
useful in other situations, though I still think you're shooting
yourself in the foot by constantly pointing to an instance (Dataphor)
that would incur a huge switchover cost for existing projects. *SQL
Server 2008 has table-valued parameters, albeit limited to read-only
input parameters; within that limit, do you approve of them?
Hello Ed,

To be charitable I suppose some will make use of it. I don' see that
it can do any harm except psychologically. It seems to me that I can
only pass the Orders table in the Northwind db if it's something else
(I assume their using the temp db). Then obviously I can't pass Orders
itself:) It reminds of the riddle, when is a door not a door? When
it's ajar:) Most users probably can't appreciate where I coming from
because they do not know what it 'really' means to pass a table as a
parameter (as I've shown in many articles). Perhaps I'll further
dissect the craziness of the idea of a TVF in its own special article.
In the meantime I suspect there are much bigger fish to fry :)

best,
steve
www.beyondsql.blogspot.com
  #9  
Old November 18th, 2008, 08:45 PM
Ed Murphy
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


steve wrote:
Quote:
To be charitable I suppose some will make use of it. I don' see that
it can do any harm except psychologically. It seems to me that I can
only pass the Orders table in the Northwind db if it's something else
(I assume their using the temp db). Then obviously I can't pass Orders
itself:)
I agree that SQL 2008 doesn't cover all of your suggestions - I was
just pointing out that it seems to cover at least some of them.
Quote:
Most users probably can't appreciate where I coming from
because they do not know what it 'really' means to pass a table as a
parameter (as I've shown in many articles).
That's probably true in many cases, but here is (I suspect) why they
aren't learning from you in particular:

1) Dataphor is a niche product. Existing projects, of which there are
many, would suffer major switchover costs. Even new projects would
require the developer to spend some time learning Dataphor's
interface for app development. There are cases where these costs
would be worth it, but by failing to address these limits, you come
off sounding like an impractical ivory-tower theorist and/or fringe
religious cultist.

This would be greatly mitigated if you translated your ideas into
hypothetical extensions of SQL, and lobbied to have such extensions
added to the industry standard. I've even given examples of this
in the past, but you didn't seem to see any significant value in
it; even SQL 2008's actual (albeit incomplete) progress on this
front was met with no more excitement than "meh, might help a bit".

2) Grammar can't just be swept under the rug with "my style is more
important". First, technical subjects require clear communication,
full stop. Second, your style is far from unique; even in artistic
fields, only a few of us can be a cummings or Silverstein.
  #10  
Old November 20th, 2008, 03:55 AM
steve11228@gmail.com
Guest
 
Posts: n/a

re: How add rows to table in Microsoft SQL 2008 Server


On Nov 18, 1:39*pm, Ed Murphy <emurph...@socal.rr.comwrote:
Quote:
>...here is (I suspect) why they aren't learning from you in particular:
1) Dataphor is a niche product.
I was hoping it would be seen as a Nietzschean type product:) Note
that many
products are nichey along the way to becoming widely used. MySql was
once a niche product (a label used pejoratively by MS and other
vendors). Today it's advocates would argue it's quite the mainscream.
Quote:
Existing projects, of which there are many, would suffer major switchover
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Performance: Conditions in WHERE clause vs. conditions in INNER JOIN? =?ISO-8859-1?Q?Ren=E9?= answers 12 November 8th, 2008 12:45 PM
using DataSet programatically without an sql server database Andy B answers 12 June 27th, 2008 09:07 PM
SQL Server 2008 - Filestream Andreas Zimmermann answers 8 June 27th, 2008 08:06 PM
SQLServer Table Partitioning Piero 'Giops' Giorgi answers 15 June 8th, 2007 05:35 PM