Viewing 15 posts - 24,106 through 24,120 (of 26,486 total)
And, if the field you have to adjust is part of a primary key or unique index you actually have to accomplish the update first, then insert the new record.
😎
October 17, 2008 at 2:57 pm
Are you trying to do this in VBA in Access or SQL in Access?
Using SQL, there is a function called CEILING.
😎
October 17, 2008 at 2:35 pm
CONSTRAINT [PK_test] PRIMARY KEY CLUSTERED
(
[DateSince2000] ASC,
[shape] ASC,
...
October 17, 2008 at 2:28 pm
Unfortunately, our "wise and omnipotent" federal government has treated Social Security as it own little piggy bank to pay for many things that the money was NOT intended to pay...
October 17, 2008 at 12:07 pm
Gosta Munktell (10/17/2008)
"Hello Experts,
Actually I have a Dynamically generated table with the columns names like Q1, Q2.... up to any number don't know. I just...
October 17, 2008 at 11:54 am
Sirish (10/17/2008)
Declare @StrQuery varchar(40000)
Set @StrQuery=''Select * from Employee'';
Exec(@StrQuery);
My Actual Query is ofcourse much complex.IS...
October 17, 2008 at 10:01 am
FreeHansje (10/17/2008)
update hl7_patienten
set woonplaats = woonplaatsnaam
--SELECT t1.patientnummer, woonplaats, woonplaatsnaam
from hl7_patienten t1
inner join ptr_init_patienten_z_woonp t2
on t1.patientnummer = t2.patientnummer
Table hl7_patienten has 1500000 records, no index on WOONPLAATS, table ptr_init_patienten_z_woonpl has...
October 17, 2008 at 9:01 am
I think I understand what you are trying to do, but being a bit more of a visual based person it would help if you also provided the expected results...
October 16, 2008 at 2:25 pm
Figured it out. It was probably mentioned somewhere, but I had to use the Service Name, not the display name.
😎
October 16, 2008 at 10:55 am
Started playing with xp_servicecontrol a bit and it looks like it works fine for default installations, but how can you use it to control/monitor a named instance?
I haven't had much...
October 16, 2008 at 10:32 am
Help us help you. There really isn't enough info in your post to work with. Please take the time to read the following article:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Follow the guidelines in the...
October 15, 2008 at 11:19 pm
As stated above, no you can't attach a database from SQL Server 2005 to SQL Server 2000 (even if it was in compatability mode 80). The disk structures are...
October 15, 2008 at 11:10 pm
That's why I keep pushing for multiple offsite file servers. All I want is 4 distributed around the district (we are a K12 public school district) where I can...
October 15, 2008 at 2:58 pm
Here's an answer you might hear where I work:
The SAN will never go down.
:hehe::cool:
October 15, 2008 at 2:39 pm
Giving a user/role access to a stored procedure is a means to allow users/applications to access database tables without giving them direct access to the tables. If you don't...
October 15, 2008 at 2:28 pm
Viewing 15 posts - 24,106 through 24,120 (of 26,486 total)