Viewing 15 posts - 511 through 525 (of 1,241 total)
We don't use AS in the table aliases, though, because that's usually pretty clear.
I find it clearer if AS is used consistently when aliasing anywhere. If I can apply...
September 15, 2016 at 11:06 am
Just quick and dirty , I can get the offset as a integer with
SELECT
cast(
left(
right (
cast(SYSDATETIMEOFFSET() as varchar(40))
,6),3) as int)
Again , quick and dirty.
September 14, 2016 at 12:35 pm
I am in the pacific time zone. Currently , according the time zones of the world , I am eight time zones away from Greenwhich time. My area implements day...
September 14, 2016 at 12:28 pm
You make a very good point Drew. I dont think strict rules can override common sense in accounting for every situation. Expect exceptions to the rules. A mantra I see...
September 13, 2016 at 4:24 pm
I just did a quick refresher on replication and did not see anything about renaming tables. I got the impression you have to drop and recreate the article and then...
September 13, 2016 at 1:31 pm
Is the replication still working otherwise? Are the two servers on the same domain?
September 13, 2016 at 1:20 pm
The way I interpret what the OP is asking for is that the customer can visit a page multiple times before a order is placed. An accumulating snapshot fact table...
September 13, 2016 at 1:01 pm
Thanks Steve, yeah that is what I thought.
The page link was posted by Thomas on this thread. I am copying it here. https://msdn.microsoft.com/en-us/library/ms143550.aspx
September 13, 2016 at 12:25 pm
I would really have to see the data flow here as a diagram. If proc B is calling proc A (after already being ran), what is proc A doing this...
September 12, 2016 at 6:49 pm
It sounds like a good idea in a high transaction system. But maybe the business should be the one deciding that as opposed to the developers. If I am a...
September 12, 2016 at 5:01 pm
Maybe I am getting my terminology mixed up. The article mentions that replication between 2008 and 2016 is unsupported. This under the heading of "Items Deprecated in SQL Server...
September 12, 2016 at 4:44 pm
I keep things simple, if it is in sys.tables then it is a table even if it is not ordered. I can always use an ORDER BY clause to pull...
September 7, 2016 at 11:45 am
Thanks for the feedback. And I wont bog you down with questions, just that if you want to let us know the exact issues you encountered then we can certainly...
September 6, 2016 at 3:24 pm
(3) Design a package to transfer 10 files from FTP and store them to hard drive?
Done. Ohh was this a question? 😛
Did you have to draw this out on a...
September 2, 2016 at 2:12 pm
provide the serverpassword for FTP using a package config file.
I know this is the quickest and easiest way to go about it. You know that you are storing a...
September 2, 2016 at 2:01 pm
Viewing 15 posts - 511 through 525 (of 1,241 total)