Viewing 15 posts - 52,771 through 52,785 (of 59,064 total)
I hate cross posting...
Anyway, like I said on the other forum, the correct date format number is NOT 103... it's 104. Check out Books Online under CONVERT.
January 22, 2008 at 5:04 am
As someone said above, date format #103 is NOT valid for this style of date. Check Books Online under CONVERT... the style you are looking for is style #...
January 22, 2008 at 4:55 am
No... cannot change the limit in SQL Server 2000.
Yes, you can work around it... take a look at "Expanding Hierarchies" in Books Online for details.
January 21, 2008 at 3:14 pm
Sorry, Terry... I don't know enough about the client known as SSIS to flip a nickel. I'm just assuming (bad thing to do, I guess) that it has some...
January 21, 2008 at 7:18 am
Misnomer would be correct... client could/will, indeed, pick it up as a "failure" because some error message as you said. Of course, that should be handled...
Loading the table...
January 21, 2008 at 7:05 am
Then, you need to do as I said... check out the "What's New" section of each release on the Microsoft website.
January 21, 2008 at 6:56 am
If you really have to copy the whole table, then you do not need deletes and you don't need the transaction. Insert into a new table... when you have...
January 21, 2008 at 6:54 am
Yeah... mistakes like that would certainly do it... I thought you were talking about something symptomatic with using WAITFOR even though you'd used it correctly...
January 21, 2008 at 6:38 am
Like everything else, it depends...
If you just happen to forget that a column may have times on it, BETWEEN is not a good thing because you may be missing a...
January 21, 2008 at 6:35 am
The transcender tests are representative of what the real tests will be. The real tests, as you know, are to test if you know enough to deserve the certification....
January 20, 2008 at 7:29 am
You will need to use some form of dynamic SQL...
DECLARE @TableName SYSNAME
SET @TableName = 'sometablename'
EXEC ('CREATE TABLE '+@TableName+' put rest of create here')
I guess I'm really worried about why you...
January 20, 2008 at 7:25 am
Going to another site for your files is a PITA... it would be much better if you'd just attach the files to your post.
The files are JSP files... I'm a...
January 20, 2008 at 7:21 am
Replace this part of the code...
/*
EXEC EDI..prcCreditCardCampaign '2008-01-14 00:00:00:000','2008-01-18 23:59:59:999'
EXEC EDI..prcCreditCardCampaign NULL,NULL
*/
IF OBJECT_ID('prcCreditCardCampaign') IS NOT NULL
DROP PROC prcCreditCardCampaign
GO
CREATE PROC prcCreditCardCampaign
@FromDate DATETIME = NULL,
@ToDate DATETIME = NULL
AS
SET NOCOUNT...
January 20, 2008 at 7:12 am
Viewing 15 posts - 52,771 through 52,785 (of 59,064 total)