Viewing 15 posts - 7,351 through 7,365 (of 15,381 total)
tigars39 (7/30/2013)
Anyone here can help me on how to use this information to be able to convert the Timestamp_ID column to a DATETIME?
You have three people on this thread that...
July 30, 2013 at 3:56 pm
tigars39 (7/30/2013)
July 30, 2013 at 9:53 am
OK so you have a bigint with a value of "634956975000000000" in every row. What does this value represent? It looks nothing like a datetime value.
July 30, 2013 at 9:34 am
Massan (7/30/2013)
thanks those are very usefull resources and i use them specially mssqltips.com articles and scripts
and microsoft Virual lab for High availablity labs.
all those resources are availble and i can...
July 30, 2013 at 9:31 am
It would be a LOT easier if you could post ddl and sample data.
if OBJECT_ID('tempdb..#Something') is not null
drop table #Something
create table #Something
(
VendID char(3),
Type int
)
insert #Something
select 'ABC', 1 union all
select 'ABC',...
July 30, 2013 at 9:27 am
In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form of INSERT INTO statements
3. Expected results...
July 30, 2013 at 9:13 am
tigars39 (7/30/2013)
thanks for the reply. I checkd the link in your signature and, am sorry to say that i dont understand how to do that.
I am working on an existing...
July 30, 2013 at 8:46 am
Hi and welcome to SSC. Myself and countless others are willing and able to help you. However from what you posted we don't have much to work with. It would...
July 30, 2013 at 8:11 am
What you are describing is classically known as the "Bin packing problem". It is very complicated to say the least. There is no easy way to do this and in...
July 30, 2013 at 8:07 am
kanchan 58240 (7/29/2013)
Yes. from the query we need to remove 'and'.
The column datetime1 in both the table is of type datetime.
The values which are present are...
July 30, 2013 at 7:43 am
smrobin (7/29/2013)
July 29, 2013 at 2:39 pm
sipadu (7/29/2013)
create TRIGGER InsertarPeriodoForUpdate
ON dbo.calificacion_IQA
for update
AS
BEGIN
SET NOCOUNT ON;
declare @id int
declare @mes int
select @mes=mes_calificadcion, @id = id_calificacion_iqa from updated
if...
July 29, 2013 at 1:26 pm
bartedgerton (7/29/2013)
I'm thinking something along the lines ofSELECT TOP 6 cols
FROM tables
WHERE DATENAME(weekday, dateCol) = DATENAME(weekday, GETDATE());
If you are going to use TOP 6 here you MUST supply...
July 29, 2013 at 1:24 pm
So you work as a DBA consultant and you are looking for free tutoring about the fundamentals??? Something seems very wrong here. For one, you are getting paid for the...
July 29, 2013 at 9:26 am
Since you started a new thread and Chris pointed me back to this one I will post here.
I would agree that trying to keep this data in multiple tables is...
July 29, 2013 at 7:57 am
Viewing 15 posts - 7,351 through 7,365 (of 15,381 total)