Viewing 15 posts - 6,886 through 6,900 (of 15,381 total)
SQLTestUser (9/9/2013)
IF EXISTS(
select 1 from Xlog where LogDATE >= cast(getDate() as date) -- should this be datetime if i have Sql server...
September 9, 2013 at 2:13 pm
John.Hagen (9/9/2013)
I am creating a view which involved concatenation of 2 int columns.
The data in the columns look like
Column 1 ...
September 9, 2013 at 2:08 pm
So just to reiterate, you have a system but you can't share the design. You need to build a hierarchy but you can't share or create any sample data. Even...
September 9, 2013 at 1:44 pm
What you are seeing can drive you nuts if you have to go back and forth in compatibility. Datatypes in 2008 are available even in 2005 mode (like the table...
September 9, 2013 at 1:17 pm
There is nowhere near enough information for anybody to be able to tell you "how to build it". Is this a brand new thing and you are trying to design...
September 9, 2013 at 1:06 pm
I glanced at your post on github. There really isn't enough information to provide much in the way of assistance but there are a couple of pieces of your query...
September 9, 2013 at 1:00 pm
pieter 46001 (9/9/2013)
Use ABCTRAINING
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter TRIGGER TAXPERCENT
ON [dbo].[AP101_VOUCHER_DISTR] AFTER insert AS
declare...
September 9, 2013 at 9:20 am
I suspect that the intention was to demonstrate that ISNULL will pick up the first datatype in the list which in this case is char(1). Therefore the value of returned...
September 9, 2013 at 7:34 am
John.Hagen (9/6/2013)
September 6, 2013 at 3:02 pm
Without more information than that it is pretty difficult to provide much of a detailed answer...and this question requires a detailed answer.
Please take a few minutes and the read the...
September 6, 2013 at 2:46 pm
John.Hagen (9/6/2013)
That returns 'Invalid column name' for all but the GETDATE() column
You have met at an extreme disadvantage here. I have no idea what your table looks like. Those are...
September 6, 2013 at 2:40 pm
Sean Lange (9/6/2013)
John.Hagen (9/6/2013)
I have a merge statement which ends with the following
WHEN NOT MATCHED BY SOURCE THEN
DELETE;
Now I need to record the deleted records in a...
September 6, 2013 at 2:20 pm
John.Hagen (9/6/2013)
I have a merge statement which ends with the following
WHEN NOT MATCHED BY SOURCE THEN
DELETE;
Now I need to record the deleted records in a table ...
September 6, 2013 at 2:04 pm
Viewing 15 posts - 6,886 through 6,900 (of 15,381 total)