Viewing 15 posts - 24,016 through 24,030 (of 26,486 total)
Partially. We need the DDL for the table(s), create statements. Sample data for the tables, in the format of insert statements that can be cut, paste and executed...
October 28, 2008 at 1:42 pm
Try this code:
select
a.cuslink,
a.sequence,
a.effdate,
a.site
from
#list a
inner join (
...
October 28, 2008 at 1:36 pm
BigSam (10/28/2008)
October 28, 2008 at 1:12 pm
Here is the jist of what you need. First, you need to create a Tally table in the database. It is simply a table of numbers from 1...
October 28, 2008 at 1:04 pm
Agreed. Others may have the same question as you did.
October 28, 2008 at 12:45 pm
SQLServerLifer (10/28/2008)
Sorry about that, the " "got stripped.I meant
SET column1 = REPLACE( column1, 'Jasper Conran', 'JC' )
I'd go a little further:
update dbo.YourTable set
description = replace(description, 'Jasper...
October 28, 2008 at 12:37 pm
We had a similiar issue here on a couple of servers. You can rerun the install, but there is one more step in the install process for an upgrade...
October 28, 2008 at 12:33 pm
Please take a few minutes to read the following article.
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Follow the guidlines provided in the article and provide use with more information so that we may better assist you in...
October 28, 2008 at 11:27 am
Here is a better question, what version of SQL Server 2000 are you upgrading, Standard or Enterprise? If you are upgrading from SQL Server 2000 Enterprise Edition, you need...
October 28, 2008 at 10:50 am
Comes down to personal preferences and coding styles. Neither way is right or wrong, just different.
😎
October 28, 2008 at 8:26 am
shane.barney (10/28/2008)
insert into #TempTable
select 1,1,'Bob Smith' union all
select 2,1,'Dow Jones' union all
select 3,2,'Roberta Smith' union all
select 4,1,'John Dow' union...
October 28, 2008 at 8:21 am
You might try searching this site for this to be sure, as I know I have read it somewhere, might even have been a Question of the Day.
You need to...
October 27, 2008 at 10:17 pm
Just use that as the working title. :w00t:
Steve could always retitle it prior to publishing.
😎
October 27, 2008 at 9:45 pm
Not a problem, I just thought I might have missed something somewhere. So, should this be written up as counter-point article to the one that started this?
😎
October 27, 2008 at 9:32 pm
True, but when you script the create statement or edit the table in the designer in SSMS, the columns are listed in the order you defined them in the initial...
October 27, 2008 at 7:53 pm
Viewing 15 posts - 24,016 through 24,030 (of 26,486 total)