Viewing 15 posts - 6,466 through 6,480 (of 39,877 total)
September 20, 2017 at 10:18 am
Dalkeith - Wednesday, September 20, 2017 1:27 AMGood suspense piece.Did you get the job?
Got the offer. Declined the job. Not the money...
September 20, 2017 at 8:55 am
September 20, 2017 at 8:53 am
Alan.B - Tuesday, September 19, 2017 4:44 PMSQL Server is so weird sometimes.
select 'a'+++++++++++++++++++++++'b'++++++++++++++++++++++++'c'
returns abc.
SQL is horribly broken. I know...
September 20, 2017 at 8:48 am
Contained databases are great, though this means only user/pwd and not AD integrated logins.
September 20, 2017 at 8:44 am
September 20, 2017 at 8:43 am
One thing I'll try to debug things like this is use a simple command and direct the output to a file. For example:
dir \\MAINDRIVE\subfolder$\dept_folder\Inbound > output.txt
September 20, 2017 at 8:42 am
There's nothing you can do from in your existing process if there are rows with a size > 8060. You need to truncate them before they load to ensure the...
September 19, 2017 at 3:02 pm
I can create this table:
CREATE TABLE MyBigTable2
( myint INT,
mychar CHAR(8000),
mydate DATETIME,
mychar2 VARCHAR(8000),
mychar3 VARCHAR(8000)
)
GO
September 19, 2017 at 10:59 am
Not to press, but this is why we built SQL Clone at Redgate. It allows developers to get a full copy of data with minimal space/time issues.
September 19, 2017 at 9:49 am
Run your query without the sum, just get a field or two. Do you get data? I suspect that you haven't structured your query correctly, but if you don't provide...
September 19, 2017 at 9:40 am
September 19, 2017 at 9:38 am
A few choices I'd recommend:
SQL Skills - https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/enable-encrypted-connections-to-the-database-engine
Brent Ozar PLF - https://www.brentozar.com/training/
Steve Stedman - http://stevestedman.com/consulting/training-classes/
You can also look at...
September 19, 2017 at 9:19 am
Here's the BOL article: https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/enable-encrypted-connections-to-the-database-engine
We don't have a great article here, but we need one. I'll see if I can get one up. The idea is...
September 19, 2017 at 9:17 am
You say import static data, does this include transactional data for tables that developers need? Or is it just lookup data?
Otherwise, this is fine, though I'd set this...
September 19, 2017 at 9:10 am
Viewing 15 posts - 6,466 through 6,480 (of 39,877 total)