13,730 questions
0
votes
1
answer
24
views
How to prefix a specific series of lines (multiple)?
I have a text file, which has an inconsistent timestamp format, that I would like to standardize. This is in a transcript from an interview; ultimately for textual analysis.
What command could I run ...
0
votes
0
answers
24
views
how do you save timestamp in firestore timetsamp format, could you provide google documentation for this? [closed]
how do you save timestamp in firestore timetsamp format, could you provide google documentation for this? could you provide documentation
So far, I have found it should be converted to nanoseconds if ...
-4
votes
0
answers
18
views
Why do i have 9 transactions with the same timestamp 8 where 30 dollars and one for 50 but all 6:55 am showing complete and minus the amount [closed]
What should i do about it
Ive tired to get a hold of Paypal customer service i went back and checked the timestamp on all the transactions and they where all the same all nine of them and theres was ...
0
votes
1
answer
115
views
Import timestamp from Rstudio to Snowflake changes timezone
I'm exporting some data from Snowflake to Rstudio and do some data processing. After that I write the data back to Snowflake. The problem is that somehow the timestamp initiale from Snowflake is ...
0
votes
1
answer
31
views
GridDB Python client inserting datetime object into TIMESTAMP column
I’m using GridDB Cloud (Free Tier) with the official Python client (latest pip release) on Ubuntu 22.04.
My container schema looks like this:
device_id STRING,
created_at TIMESTAMP,
temperature DOUBLE
...
0
votes
1
answer
60
views
How do I append a timestamp data type with zuckdb/duckdb appender in zig
I need to append candlestick bars to Duckdb that have a timestamp data type. Since I don't know how I have used varchar for time instead. How do I do it properly so that I can query based on timestamp?...
3
votes
2
answers
97
views
How to cast a timestamp to date in format YYYY-MM-DD in griddb
I created a collection container name ‘orders’ with the below DDL using NewSQL Interface:
CREATE TABLE orders
(
orderId STRING PRIMARY KEY,
customerId STRING,
orderDate TIMESTAMP,
...
0
votes
0
answers
36
views
Modifying timestamps on Windows reparse points
I need to copy timestamps (modified time) between NTFS reparse points of type junction, directory symlink and file symlink.
I can get the timestamp of a reparse point with os.lstat(). But to apply ...
1
vote
0
answers
65
views
Robocopy algorithm for /FFT and /DST options
Microsoft's Robocopy program has these two options:
/FFT :: assume FAT File Times (2-second granularity).
/DST :: compensate for one-hour DST time differences.
What is the exact algorithm that ...
0
votes
0
answers
100
views
How do I set data in an Inode Field using C
I am trying to write a program that modifies the timestamps of a lot of files at once.
Doing this for aTime and mTime was straightforward using utimensat, but doing it for cTime and bTime/crTime it ...
-3
votes
1
answer
132
views
How to configure ObjectMapper to deserialize java.sql.Timestamp?
I am facing an issue with configuring the Jackson ObjectMapper to deserialize java.sql.Timestamp.
In particular, the issue is that deserialization with a mapper that was initialized via ObjectMapper ...
1
vote
0
answers
472
views
How to properly store a date time value in a sqlite3 database with python
I wanted to store a timestamp from Python in a sqlite3 database. For that I used this kind of code
from datetime import datetime, date, timedelta, time
import sqlite3
import os
def main():
...
0
votes
0
answers
26
views
mscc linux driver rx timestamping (MICROSEMI_PHY)
in linux driver mscc (which can be enabled menuconfig via MICROSEMI_PHY) rx timestamping is done within atomic context, but mdio bus locking required, and when thread waits for unlocking mutex it can ...
1
vote
0
answers
28
views
GridDB time-series query skips rows with millisecond timestamps (Java API)
I'm testing GridDB Community Edition 5.3 (Linux container via Docker Desktop on macOS 14.4, Apple M1).
When I insert rows with millisecond timestamps into a time-series container, and query using a ...
2
votes
0
answers
19
views
How to perform range queries on TIMESTAMP fields in GridDB Cloud using the Python client?
I'm using GridDB Cloud and the Python client (griddb_python) to build a time-series dashboard. The goal is to retrieve rows from a container called sensor_data where the created_at timestamp is within ...