Viewing 15 posts - 24,106 through 24,120 (of 26,490 total)
You really should keep this in the same thread: http://www.sqlservercentral.com/Forums/Topic588510-1291-1.aspx
Have you looked at the recent suggestions given there?
😎
October 20, 2008 at 10:48 am
Not sure, as you didn't provide the DDL for the tables or any sample data to test with, but does this work?
;with ProductList (
RowNum,
...
October 20, 2008 at 9:25 am
For S & G, put an index on woonplaats. If there are 1.5 million rows, but only 13,000 rows with a null value in woonplaats, you might see a...
October 20, 2008 at 9:02 am
Jeffrey Williams (10/19/2008)
nilmov (10/19/2008)
October 19, 2008 at 5:07 pm
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
Viewing 15 posts - 24,106 through 24,120 (of 26,490 total)