Viewing 15 posts - 481 through 495 (of 993 total)
David's correct - set based systems return a bunch of rows that form a set - a set has no order. To maintain row numbers, etc you'll need to add...
May 27, 2006 at 10:05 pm
I haven't used log shipping yet as it was previously only included in the enterprise/developer version of SQL 2000. We are about to set up a small accountant's office with...
May 24, 2006 at 7:51 am
It's a shame when something is so straight forward but you need the new version - i'm in a similar situation myself for a small part of our proposed Infopath...
May 23, 2006 at 8:47 pm
For row #27 is there a field with the value 27 in it? (this would be like an identity). If not, how do you know which row is row 27? ...
May 23, 2006 at 12:19 am
No probs ![]()
Just reread my post to remember what I said... The tool on win2k is still in the system32 folder, just that...
May 22, 2006 at 2:17 am
Please explain what you mean by the statement "the pkeys are not unique" - they have to be unique to be primary keys!? That's the whole point of them.
Are you...
May 22, 2006 at 2:12 am
I don't have a copy of SQL 2005 installed near me at the moment, but perhaps you need to put the DOMAIN\USERNAME in square brackets, such as
May 22, 2006 at 2:02 am
use the inner join - from your description you have some pkey that is the same in each table... So an inner join such as
select A.pkey, A.field1, A.field2, B.field1, B.field2,...
May 17, 2006 at 11:46 pm
And the quoted discussion is DEFINITELY talking about memory being 2GB limit, not DB disk size - although that happens to be the limit for DB sizes in MSDE
May 17, 2006 at 11:09 pm
The osql utility is not MSDE per se - much like enterprise manager is not sql server standard/enterprise... osql happens to come with all flavours of SQL..
Anyhow, see here.
C:\Program Files\Microsoft...
May 17, 2006 at 11:06 pm
If yo uare going down this road then you should
a) Make sure that you provide tools to do things like backup / restore, consistency checks, etc
b) Be aware that...
May 17, 2006 at 10:57 pm
I guess you are running a foreign language version of windows so no probs there. The actual error message indicates that you can connect to SQL Server but the default...
May 17, 2006 at 10:43 pm
try running this from the command prompt when you leave QA idle.
ping -t [MY_SQL_SERVER]
This will constantly send pings to the server. If it keeps getting consistent replies but your connetion...
May 17, 2006 at 10:34 pm
Personal edition is the same as MSDE but with a copy of Enterprise Manager, Query Analyser, etc... When you purchase SQL Server Standard/Enterprise you also receive media for Personal edition. ...
May 17, 2006 at 10:31 pm
Remi has expressed the right point I must admit - this is, if used for reporting, a client-side issue. However, there are times when having some sort of row number...
May 17, 2006 at 10:26 pm
Viewing 15 posts - 481 through 495 (of 993 total)