Viewing 15 posts - 1 through 15 (of 63 total)
Yep both the abov workd for me too
January 7, 2022 at 11:20 am
Can you confirm the row terminator through something like Notepad++?
The code seems ok but it does depend a lot on the actual import file formatting which we can't see.
January 6, 2022 at 2:06 pm
You have no T2 table
from T1 join on
should be
from T1 join T2 in
September 30, 2019 at 8:18 pm
Temporal tables allow a table history but that’s the whole table. Shadow tables can be created with insert/update triggers and you can configure for the coins you want.
September 30, 2019 at 6:55 pm
Hi,
Depends on what you trying to achieve. If you just want a dev installation you can install locally. If you have a server on a lan you can install there...
September 30, 2019 at 6:51 pm
Depends what your trying to achieve long term. There are a number of different ways this could be set up-local, azure/aws(cloud), local server. It all depends on your end requirements...
September 29, 2019 at 2:05 pm
How long should the query take to run? Does it error straight away. I’d look at command timeout as well as connection.
Is the Winforms app local (same machine) as the...
September 29, 2019 at 2:01 pm
Hi,
Assume this is something that is live and you are trying to work around?
Obviously only seeing a snippet but if Stakeholder was a table and Stage was a...
August 5, 2016 at 5:13 am
Not tested but is something like this what you are after:
DECLARE @WKSTARTDATE DATETIME = '2016-01-04'; -- for example first Monday of Jan 2016
DECLARE @NUMBEROFWKS INT = 10; -- number...
March 31, 2016 at 1:08 am
"If I could directly assign postcodes to a police force it would be much easier but as I said above I would end up with other problems."
Ok, scrap my idea...
March 30, 2016 at 7:57 am
It's easy for me to sit from a far and make comments on a topic area I have very little knowledge on but this is what I was thinking.
The...
March 30, 2016 at 7:50 am
I only have a small insight to what you need to do but why can't you allocate the postcodes against the Account (police force) as this is where the actual...
March 30, 2016 at 6:35 am
If this is recording the amount of time allocated as opposed to the actual time of day wouldnt you be better to look to use a numeric field?
March 30, 2016 at 5:23 am
If the hour is 00 the datepart returns 0, 0 -1 = -1.
cast(datepart(hh, @date) - 1 as varchar(2))
March 10, 2016 at 9:01 am
Viewing 15 posts - 1 through 15 (of 63 total)