Viewing 15 posts - 23,641 through 23,655 (of 26,486 total)
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
Marios Philippopoulos (11/19/2008)
UPDATE A
FROM tbl1 A JOIN linkedServer.db1.dbo.tbl2 L
...
Service Broker won't help you with this...
November 20, 2008 at 8:23 am
Kicking_Fish0713 (11/19/2008)
Thanks for a quick response.I don't use hardcoded values that's why I'm using a cursor.Can you pls send me a sample script using a cursor?Thanks in advance.
First of all,...
November 20, 2008 at 7:17 am
Hopefully the following test code will help you figure out what you need:
create table #MyTest (
Number int,
Code char(4),
...
November 19, 2008 at 9:18 pm
Nandy (11/19/2008)
Hi All,Now I can able to delete the data from the table using cursor.
Cheers,
Nandy
Not sure what you are talking about here. You never did answer my question or...
November 19, 2008 at 8:51 pm
Viewing 15 posts - 23,641 through 23,655 (of 26,486 total)