Viewing 15 posts - 1,606 through 1,620 (of 2,701 total)
yup.. you do need to go and learn the basics of T-SQL.
remove all "GO" statements that are after the create procedure.
But as Brian mentioned why this? once created the indexes...
April 17, 2020 at 5:51 pm
if I understand what you are trying to say it seems that you don't know how to create a stored procedure
so instead of putting a few snippets from your code...
April 17, 2020 at 5:39 pm
and what is your issue?
what you said does not give us any detail other than what you intend on doing.
April 17, 2020 at 4:01 pm
Visual Studio is 32 bit - you need to install ACE x32 in order to be able to create new SSIS packages using it.
April 16, 2020 at 7:36 pm
We just discovered another process that is having a similar issue. It appears to be where the field size in the "source" table (which contains the non-clustered columnstore index)...
April 16, 2020 at 2:13 pm
As Grant mentioned in order to achieve a similar functionality like Oracle you need to have your database set with Read Committed Snapshot (RCSI).
Basically with RCSI your readers will not...
April 16, 2020 at 6:26 am
did you bother reading my reply?
April 14, 2020 at 4:31 pm
you do need to look at the output of your print command - that will show it what is wrong.
try the following - removed some of the single quotes on...
April 14, 2020 at 3:52 pm
using https://mh-nexus.de/en/hxd/ - its a must have tool for a developer that deals with multiple type of files. with it you can see if the row delim is "0d", "0A"...
April 13, 2020 at 5:18 pm
If you're going to split the data on the way in, even if it's just two columns, you're going to need a "Format File" to do it. If no...
April 13, 2020 at 4:26 pm
apologies.
Bulk insert (done this way) requires a slightly different setup
working example below - note that i have removed the record type from the temp table as bulk would fail because...
April 13, 2020 at 4:12 pm
can you post here the bulk command you used please.
April 13, 2020 at 3:45 pm
Do I just replace the part he has the select and from with a bulk insert?
yes that would be a way - where I do "insert into #data .......
April 13, 2020 at 3:12 pm
you can do it 2 ways
1 - use parameters instead of string replacements - this is the best option- google and you will find some code with it for powershell
2...
April 13, 2020 at 11:43 am
I think the record layout is correct - its just that column "provider name" should be further divided into LastName, FirstName, Middle Initial (probably)
if object_id('tempdb..#data')... April 9, 2020 at 6:03 pm
Viewing 15 posts - 1,606 through 1,620 (of 2,701 total)