Viewing 15 posts - 6,796 through 6,810 (of 26,490 total)
Try the following:
Use Lely;
GO
Set Identity_Insert dbo.HemTransfer ON;
go
Insert into dbo.HemTransfer (TraTrtId,TraAniId,TraDate)
Select 2, HemAnimal.AniId, HemAnimal.AniBirthday from HemAnimal Where HemAnimal.AniUserNumber = 123456;
go
Set Identity_Insert dbo.HemTransfer OFF;
go
April 7, 2014 at 11:20 am
AYSO does not enforce Offside infractions until U-10. I agree that players should be taught the concept of offside early so that they understand it and don't find themselves...
April 7, 2014 at 10:10 am
yuvipoy (4/7/2014)
yes.inorder to hide my business process i have renamed the column.
while pasting here i did not mention as b.column names for the columns.
For execution plan since it is having
Would...
April 7, 2014 at 8:11 am
Sean Lange (4/7/2014)
Lynn Pettis (4/4/2014)
Sean Lange (4/4/2014)
Lynn Pettis (4/4/2014)
Sean Lange (4/4/2014)
April 7, 2014 at 7:31 am
Here is your code reformatted and using ANSI-92 style inner join:
Select
a.*,
Col5, -- which table?
Col7, -- which table?
...
April 7, 2014 at 7:03 am
Looking at this query, it won't even run:
Select a*, Col5,Col7,Col9,Col10,Col12 from Table1 a (nolock), Table2 b (nolock) where a.col1=b.col2
and a.col3=@value
order by col4 , col15,col6, col10,col11 desc , col9,col12,col16
You have...
April 7, 2014 at 6:59 am
How about providing the actual execution plan for the query as a .sqlplan file instead of pasting a bit of the xml plan?
April 7, 2014 at 6:58 am
Jack Corbett (4/6/2014)
April 6, 2014 at 6:20 pm
Start by looking at the system functions you can use in a query to capture some of the information you require. Not everything you need is in the table(s)...
April 6, 2014 at 3:45 pm
I would go with the ancillary table. Yes, you would have to join to the table to know what newsletters a customer authorized, but the benefit is all you...
April 6, 2014 at 3:37 pm
And what others have been saying is that it would be easy to spoof the audit regarding who made the change. Through the connection string it would not be...
April 6, 2014 at 3:33 pm
It is nice that people are willing to take shots in the dark to help solve the problem. It would also be nice if the OP would provide us...
April 6, 2014 at 7:22 am
dhananjay.nagarkar (4/5/2014)
i tried it this way-\--
when [w].[GHRMS Contingent ID] IS NOT NULL
-- if the 1st 8 characters meet All 8 are numeric-no...
April 5, 2014 at 10:05 pm
The following has both a SQL Server 2008 and newer version and a SQL Server 2005 (and newer) version:
create table dbo.EventsStatus(
EventDate datetime,
EventStatus...
April 5, 2014 at 2:08 pm
Viewing 15 posts - 6,796 through 6,810 (of 26,490 total)