Viewing 15 posts - 376 through 390 (of 748 total)
What percent_complete does the progress query return? (know that it's not necessarily linear/precise)
What reasons do you have to believe restore will suddenly become faster and complete in a small fraction...
June 16, 2022 at 7:05 pm
Note: SQL Server Express is not supported as a replication publisher - only as a subscriber.
So backup & restore or a homebuilt process for pulling data to the central...
June 15, 2022 at 1:36 pm
Do you have reliable, reasonably high-bandwidth communication between the head office and all those satellite offices locations? Transactional replication could cause issues if not.
Another option would be to restore backups...
June 15, 2022 at 1:29 pm
Employee/Person: Response By indicates a relationship in another table to Employee/Person. It is not an attribute of Employee/Person. Even less so is Response On datetime. Attributes of an Employee/Person might...
June 14, 2022 at 4:40 pm
Good point. I got tangled in the jumping between tables and logical design too.
My intent (not clearly stated) was for table naming.
June 14, 2022 at 2:59 pm
Glad to hear it!
First rule of tech support. 🙂
June 14, 2022 at 2:56 pm
That's an ELT (Extract, Load, & Transform) strategy using a staging table, as opposed to an ETL strategy (in which you would do the transformation before importing, loading directly into...
June 14, 2022 at 2:43 pm
As Scott already suggested, think about entities & attributes.
What are the entities (actors/objects/categories) involved? What attributes do the entities have? How do they relate? One-to-one? Many-to-many? (e.g., can you have...
June 14, 2022 at 2:04 pm
CPZ Name & CPZ Code appear to be related. Is it one-to-one? (in which case they should be in a lookup table, and only reference CPZ Code in other tables)
Or...
June 14, 2022 at 1:00 pm
That conversion is going to be fun in SQL 2012. /s
In addition to the usual fun in converting among timezones in the United States, you have the additional complexity that...
June 13, 2022 at 8:04 pm
Format could be derived like this:
CONVERT(CHAR(10),jobstarted,103) + ' ' + CONVERT(CHAR(8),jobstarted,108)
You indicate output as "Rome Time". What timezone/offset is your source data in?
June 13, 2022 at 7:09 pm
Were Windows updates installed?
Sounds like a query or data issue. Do the affected reports have anything (e.g, a parameter) in common?
Did something change in stored procedure(s)? New data that might...
June 13, 2022 at 3:51 pm
e.g.,
DECLARE @SNH TABLE
(
cntDT DATETIME,
cntQ varchar(10),
cntL int
);
INSERT INTO @SNH (cntDT, cntQ, cntL)
VALUES ('2001-04-04 10:00:00', 'Queue01', 3),
('2001-04-05 10:03:00', 'Queue01', 1),
('2001-04-05 10:06:00', 'Queue01', 1),
('2001-04-05 10:07:00', 'Queue01', 1),
('2001-04-05 10:11:00', 'Queue01', 1),
('2001-04-05...
June 10, 2022 at 7:36 pm
It sounds like you just need to use a numbers table or tally function to generate numbers, & use that to generate table of datetimes using DATEADD.
Not sure...
June 10, 2022 at 7:09 pm
Viewing 15 posts - 376 through 390 (of 748 total)