Viewing 15 posts - 23,641 through 23,655 (of 26,490 total)
Let's ask a different question first. Are the dates you are using supposed to be the last day of every month?
November 20, 2008 at 5:33 pm
yulichka (11/20/2008)
Thank you This is 2000 and there is no option for that.
What do you expect? You posted your problem in a SQL Server 2005 forum, you are going...
November 20, 2008 at 12:30 pm
Which table is getting locked and scanned?
If you notice, the column you are commenting out is from the second table of your join.
November 20, 2008 at 12:15 pm
Curious, and others may have a similiar problem, but what was done to resolve the problem?
November 20, 2008 at 12:10 pm
In your original post, you indicated you are trying to do this on SQL Server 2000, correct?
xp_cmdshell does not need to be configured on SQL Server 2000. That change...
November 20, 2008 at 11:56 am
Visual studio works gret, if you have the Professional Version or greater. Standard Edition doesn't do it.
November 20, 2008 at 11:33 am
Double Posted. Please put all answers at the following forum:
http://www.sqlservercentral.com/Forums/Topic606008-146-1.aspx
Please avoid double posting. Most contributors watch all the forums, so doing so is not necessary.
November 20, 2008 at 11:23 am
yulichka (11/20/2008)
To clean up the white space
What white space?????
November 20, 2008 at 11:16 am
This is the table you provided:
CREATE TABLE [dbo].[controlcloro](
[idcontrol] [int] IDENTITY(1,1) NOT NULL,
[fechahora] [datetime] NOT...
November 20, 2008 at 10:47 am
No cursor is needed. This is a variation on the running total problem.
Read this article, it may help you figure out this problem, and if not ask for more...
November 20, 2008 at 9:46 am
batista1331 (11/20/2008)
IS there a simple way to do that?
:unsure: What could be simplier? If you need to join multiple tables together, you have to use joins of some time...
November 20, 2008 at 9:41 am
Books Online should be able to answer all your questions about the fixed server and database roles.
November 20, 2008 at 9:38 am
Double posted. See this thread for more info: http://www.sqlservercentral.com/Forums/Topic605904-169-1.aspx
Please refrain from posting the same question in multiple forums. Most contributors watch all the forums.
November 20, 2008 at 9:34 am
Does this help you?
create table dbo.Table1 (
table1ID int primary key,
table1Data1 varchar(10),
table1Data2 varchar(10) null
)
create table dbo.Table2 (
...
November 20, 2008 at 9:29 am
raym (11/20/2008)CREATE TABLE dbo.tbComm_CurrentMonth(
LoanRefVARCHAR(20)NULL,
First_Perend_DateINTNULL,
BranchCHAR(5)NULL,
BalanceNUMERIC(13, 2)NOT NULL,
EvenInstalmentNUMERIC(13, 2)NOT NULL,
Jul08AMTNUMERIC(13, 2)NULL,
Jun08AMTNUMERIC(13, 2)NULL,
May08AMTNUMERIC(13, 2)NULL,
ProductCodeCHAR(1)NULL,
DescriptionVARCHAR(100)NULL,
Missed_InstalmentDECIMAL(18, 3)NULL,
Miss_Payment_FlagSMALLINTNULL,
threemonthmovingavgDECIMAL(13, 3)NULL,
RundateDATETIMENULL
)
DECLARE @sql VARCHAR(8000),@Col1 VARCHAR(10),@Col2 VARCHAR(10),@Col3 VARCHAR(10
)
SELECT @Col1 = COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME =...
November 20, 2008 at 8:40 am
Viewing 15 posts - 23,641 through 23,655 (of 26,490 total)