Viewing 15 posts - 196 through 210 (of 388 total)
in cmdprompt
fltmc filters
in sql
xp_cmdshell 'fltmc filters'
I think for SQL, if using xp_cmdshell, the sqlserver service will need to be admin, but I may be wrong.
December 2, 2015 at 5:24 am
If we don't have schema information or indexing, a query or proc or something that will give us a hint as to what type of function you are using and...
November 30, 2015 at 10:17 am
Have a look at the query plan created for the bulk insert.
There was or maybe still is, where a plan gets created with sort even though you not doing an...
November 30, 2015 at 5:41 am
When you say 'Bulk inserts' do you mean straight from file or table without doing any joins or filtering or sorting?
Bulk inserting into a clustered table or table with...
November 30, 2015 at 4:15 am
Beatrix Kiddo (11/27/2015)
November 27, 2015 at 8:18 am
run sp_who or query sys.processes to see if anything is using the database.
check the code below and make sure that the file you are trying to overwrite belongs to the...
November 27, 2015 at 8:03 am
Any reason why it is being run in as an execute string?
November 27, 2015 at 7:47 am
does the bit below effectively make the left join an inner join?
b.srnumber BETWEEN 1 AND 100
Also, for anyone else who struggles to read unformatted sql.
SELECT
...
November 27, 2015 at 7:28 am
I have added the changes suggested, specifically excluding where the identity is included explicitly in indexes, as well as only returning indexes which contain the identity column.
It seems like the...
November 25, 2015 at 10:19 am
Thanks Scott, Will, Lee, Sean and BornReady for the effort in testing, critiquing and optimizing.
Some good ideas here and I will adapt the script as soon as.
The specific scenario...
November 25, 2015 at 6:42 am
Jeff Moden (11/21/2015)
November 23, 2015 at 7:44 am
I may not be helping fix this particular problem, but I had a look at the PS and the embedded sql and have difficulty reading it inside the PS.
How about...
November 23, 2015 at 3:16 am
I think to do partition switching you need all indexes to be partition aligned.
November 20, 2015 at 10:27 am
Viewing 15 posts - 196 through 210 (of 388 total)