Viewing 15 posts - 2,611 through 2,625 (of 2,855 total)
April 5, 2017 at 3:08 pm
Ah right. If it runs from the command prompt, it works as you.
Is 'Homebrew01" an AD account or a local account on both machines?
If it is a local...
April 5, 2017 at 12:14 pm
I'm guessing though that you have some method of connecting to the remote machine via remote desktop or have some way to manage that server apart from just FTP?
April 5, 2017 at 10:58 am
FTP will be a similar can of worms with a few fun new problems as you then have to have credentials stored in plain text. Either that or have no...
April 5, 2017 at 10:01 am
April 5, 2017 at 8:43 am
Looking...
April 5, 2017 at 8:37 am
April 5, 2017 at 8:27 am
I personally disagree with your professor. While having space for longer things is not a horrible idea, there is no benefit to having it larger than it needs to be....
April 4, 2017 at 4:16 pm
My version will not work with multiple customers. If you want to use multiple customers, the CTE method mentioned by April 4, 2017 at 3:35 pm
Or another thought:
SELECT TOP 1 id, cust_id, ISNULL(CompDate, '1900-01-01') AS MaxDate
FROM Table1
WHERE cust_id = <SOME_GUID>
ORDER BY CompDate DESC
You don't need to do...
April 4, 2017 at 3:14 pm
I'd do a constraint on the 3 columns for sure since you are saying they need to be unique. But when you say they need to be unique, do you...
April 4, 2017 at 3:05 pm
I would venture a guess that statistics were updated so the delete was easier or that the values you were deleting were indexed better the second time. But there could...
April 4, 2017 at 12:35 pm
I know I got my MTA in Database Fundamentals and the test was quite easy after working with SQL for a few years. Spent a lot more time proving my...
April 4, 2017 at 12:29 pm
Another thing to watch for is SSRS doesn't like changes in server names. If you are running enterprise edition, it should work fine I think, but if it is standard...
April 4, 2017 at 12:18 pm
If I am not mistaken, the SSAS Database is just another database. The stuff it does on the back end is the interesting side.
But if you just need to...
April 4, 2017 at 12:07 pm
Viewing 15 posts - 2,611 through 2,625 (of 2,855 total)